mscorlib(4.0.0.0) API with additions
RuntimeArgumentHandle.cs
2 
3 namespace System
4 {
6  [ComVisible(true)]
7  public struct RuntimeArgumentHandle
8  {
9  private IntPtr m_ptr;
10 
11  internal IntPtr Value => m_ptr;
12  }
13 }
Definition: __Canon.cs:3
References a variable-length argument list.
A platform-specific type that is used to represent a pointer or a handle.
Definition: IntPtr.cs:14