本文整理汇总了C#中CodeGen.EmitConvertFromObject方法的典型用法代码示例。如果您正苦于以下问题:C# CodeGen.EmitConvertFromObject方法的具体用法?C# CodeGen.EmitConvertFromObject怎么用?C# CodeGen.EmitConvertFromObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CodeGen
的用法示例。
在下文中一共展示了CodeGen.EmitConvertFromObject方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Emit
internal override void Emit(CodeGen cg)
{
if (Options.DebugMode) {
cg.EmitPosition(this);
cg.EmitTestTrue(test);
Label endLabel = cg.DefineLabel();
cg.Emit(OpCodes.Brtrue, endLabel);
cg.EmitExprOrNone(message);
cg.EmitConvertFromObject(typeof(string));
cg.EmitCall(typeof(Ops), "AssertionError", new Type[] { typeof(string) });
cg.Emit(OpCodes.Throw);
cg.MarkLabel(endLabel);
}
}
示例2: EmitGetAs
public void EmitGetAs(CodeGen cg, Type asType)
{
Contract.RequiresNotNull(cg, "cg");
Contract.RequiresNotNull(asType, "asType");
EmitGet(cg);
if (asType == typeof(object) && this.Type.IsValueType) {
cg.EmitBoxing(this.Type);
return;
}
if (asType.IsAssignableFrom(this.Type)) {
return;
}
if (asType.IsAssignableFrom(_knownType)) {
cg.EmitUnbox(asType);
} else {
// A special case for int-> double until we can do the proper matrix
if (asType == typeof(double)) {
if (this.Type == typeof(int)) {
cg.Emit(OpCodes.Conv_R8);
return;
} else if (this.KnownType == typeof(int)) {
cg.EmitUnbox(typeof(int));
cg.Emit(OpCodes.Conv_R8);
return;
}
}
if (this.Type != typeof(object)) {
// TODO make this efficient, for now just go to object and back
//throw new InvalidOperationException();
cg.EmitBoxing(this.Type);
}
cg.EmitConvertFromObject(asType);
}
}
示例3: Generate
public override void Generate(CodeGen cg, Slot contextSlot, Slot[] argSlots)
{
argSlots[index].EmitGet(cg);
cg.EmitConvertFromObject(parameter.Type);
}
示例4: EmitGet
public override void EmitGet(CodeGen cg)
{
instance.EmitGet(cg);
cg.EmitInt(index);
cg.Emit(OpCodes.Ldelem_Ref);
cg.EmitConvertFromObject(Type);
}