本文整理汇总了C#中System.Reflection.Emit.CodeGenerator.Unbox方法的典型用法代码示例。如果您正苦于以下问题:C# CodeGenerator.Unbox方法的具体用法?C# CodeGenerator.Unbox怎么用?C# CodeGenerator.Unbox使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Reflection.Emit.CodeGenerator
的用法示例。
在下文中一共展示了CodeGenerator.Unbox方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LoadParameters
private static void LoadParameters(CodeGenerator gen, ParameterInfo[] pis, bool isMethodStatic)
{
Check.Require(gen, "gen");
if (pis != null)
{
for (int i = 0; i < pis.Length; ++i)
{
if (isMethodStatic)
{
gen.Ldarg(0);
}
else
{
gen.Ldarg(1);
}
gen.Ldc(i);
Type srcType = pis[i].ParameterType;
string str = srcType.ToString();
if (str.EndsWith("&"))
{
srcType = CommonUtils.GetType(str.Substring(0, str.Length - 1));
}
if (str.EndsWith("&")) //ref or out param
{
if (srcType.IsValueType && (pis[i].Attributes & ParameterAttributes.Out) != ParameterAttributes.Out) //ref value param
{
gen.Ldelem(typeof(object));
gen.Unbox(srcType);
}
else
{
if (srcType.IsValueType && srcType != typeof(object)) //out value param
{
gen.LoadDefaultValue(srcType);
gen.Box(srcType);
gen.Stelem(typeof(object));
if (isMethodStatic)
{
gen.Ldarg(0);
}
else
{
gen.Ldarg(1);
}
gen.Ldc(i);
gen.Ldelem(typeof(object));
gen.Unbox(srcType);
}
else //ref or out class param
{
gen.Ldelema(typeof(object));
}
}
}
else
{
gen.Ldelem(typeof(object));
if (srcType.IsValueType)
{
gen.UnboxAny(srcType);
}
else if (srcType != typeof(object))
{
gen.Castclass(srcType);
}
}
}
}
}