Exemplo n.º 1
0
 public void GetRCW(ulong addr, out IMDRCW ppRCW)
 {
     if (m_type.IsRCW(addr))
     {
         ppRCW = new MDRCW(m_type.GetRCWData(addr));
     }
     else
     {
         ppRCW = null;
     }
 }
Exemplo n.º 2
0
 /// <summary>
 ///     Returns true if the given object is a Runtime-Callable-Wrapper.  This is only supported in v4.5 and later.
 /// </summary>
 /// <param name="obj">The object to check.</param>
 /// <returns>True if this is an RCW.</returns>
 public bool IsRCW(ulong obj) => ClrType.IsRCW(obj);