The first restriction is against lifting ByRef parameter variables.
第一个限制是不能提取ByRef参数变量。
There is a lot of plumbing code required to make this work because on the CLR side byref arguments need to be of exact type ...
要完成这些工作需要有许多管道代码(Plumbing Code),因为对于CLR而言,byref声明需要有确切的类型……
While ByVal parameters are effectively local variables, ByRef variables have to copy their value back to the calling method under all circumstances.
在ByVal参数为本地变量时,ByRef变量必须将自己的值复制回所有环境下的调用方法里。
While ByVal parameters are effectively local variables, ByRef variables have to copy their value back to the calling method under all circumstances.
在ByVal参数为本地变量时,ByRef变量必须将自己的值复制回所有环境下的调用方法里。
应用推荐