Esempio n. 1
0
        public void Box(ITypeRef boxedType)
        {
            TypeReference type = CecilTypeRef.GetReference(boxedType);

            if (!type.IsValueType)
            {
                return;
            }
            _il.Emit(OpCodes.Box, type);
        }
Esempio n. 2
0
 private static TypeReference GetTypeReference(ITypeRef type)
 {
     return(CecilTypeRef.GetReference(type));
 }