Ejemplo n.º 1
0
 public static bool IsVoid(this TypeReference Type)
 {
     return(Type.CXXTypeName() == "RTCLI::System::Void");
 }
Ejemplo n.º 2
0
 public static string CXXMethodCallName(this MethodDefinition method, TypeReference type)
 {
     return($"{type.CXXTypeName()}::{method.CXXShortMethodName()}");
 }
Ejemplo n.º 3
0
 public static bool IsImplementedByVM(this TypeReference Type)
 {
     return(Type.IsPrimitive || Type.IsVoid() || Type.CXXTypeName() == "RTCLI::System::Object" || Type.CXXTypeName() == "RTCLI::System::ValueType");
 }