public String Replace(String oldValue,String newValue);
mscorlib.dll(System.String)中的方法有效.
我用dotpeek反编译了mscorlib.dll,并在方法内部调用了ReplaceInternal方法,我找不到它
string s = ReplaceInternal(oldValue,newValue);
我甚至在GIT的开源.NET Core上搜索了这个方法,但没有运气.
请解释这种方法在哪里以及里面是什么?
解决方法 外部C代码在这里.https://github.com/gbarnett/shared-source-cli-2.0/blob/master/clr/src/vm/comstring.cpp
1578行有
FCIMPL3(Object*,COMString::ReplaceString,StringObject* thisRefUNSAFE,StringObject* oldValueUNSAFE,StringObject* newValueUNSAFE)总结
以上是内存溢出为你收集整理的c# – 反编译.NET替换方法(v4.6.1)全部内容,希望文章能够帮你解决c# – 反编译.NET替换方法(v4.6.1)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)