Ejemplo n.º 1
0
 public DbgDotNetObjectIdImpl(DbgMonoDebugInternalRuntimeImpl owner, uint id, DbgDotNetValue gcHandleValue, ObjectMirror value, DmdAppDomain reflectionAppDomain)
 {
     this.owner          = owner ?? throw new ArgumentNullException(nameof(owner));
     Id                  = id;
     GCHandleValue       = gcHandleValue ?? throw new ArgumentNullException(nameof(gcHandleValue));
     Value               = value ?? throw new ArgumentNullException(nameof(value));
     ReflectionAppDomain = reflectionAppDomain ?? throw new ArgumentNullException(nameof(reflectionAppDomain));
 }
Ejemplo n.º 2
0
 public MonoDebugValueConverterImpl(DbgMonoDebugInternalRuntimeImpl runtime) =>
 this.runtime = runtime ?? throw new ArgumentNullException(nameof(runtime));