Exemple #1
0
 /// <summary>
 /// Gets a unbox method for the given primitive type.
 /// </summary>
 internal static MethodReference GetUnboxValueMethod(this XTypeReference type, AssemblyCompiler compiler, DexTargetPackage targetPackage, out RCode convertAfterCode)
 {
     return(BoxInfo.GetUnboxValueMethod(type, compiler, targetPackage, out convertAfterCode));
 }
Exemple #2
0
 /// <summary>
 /// Gets a unbox method for the given primitive type.
 /// </summary>
 internal static ClassReference GetBoxedType(this XTypeReference type)
 {
     return(BoxInfo.GetBoxedType(type));
 }
Exemple #3
0
 /// <summary>
 /// Gets a box method for the given primitive type.
 /// </summary>
 internal static MethodReference GetBoxValueOfMethod(this XTypeReference type)
 {
     return(BoxInfo.GetBoxValueOfMethod(type));
 }