예제 #1
0
파일: StackItem.cs 프로젝트: zhy0313/neo-vm
 public static StackItem FromInterface(IInteropInterface value)
 {
     return(new InteropInterface(value));
 }
예제 #2
0
 public InteropInterface(IInteropInterface value)
 {
     TR.Enter();
     this._object = value;
     TR.Exit();
 }
예제 #3
0
 public InteropInterface(IInteropInterface value)
 {
     this._object = value;
 }
예제 #4
0
 public static StackItem FromInterface(IInteropInterface value)
 {
     TR.Enter();
     return(TR.Exit(new InteropInterface(value)));
 }