Ancestry.QueryProcessor.Type.EnumType.EmitLiteral C# (CSharp) Method

EmitLiteral() public method

public EmitLiteral ( Compile method, object value ) : void
method Compile
value object
return void
        public override void EmitLiteral(Compile.MethodContext method, object value)
        {
            method.IL.Emit(OpCodes.Ldc_I4, (int)value);
        }