CodeGen.GenerateListExpStub C# (CSharp) Method

GenerateListExpStub() private method

private GenerateListExpStub ( ) : void
return void
    void GenerateListExpStub()
    {
  	il.Emit(OpCodes.Call, ((typeof(LispRuntime)).GetMethod("Print")));
  	Type[] type = new Type[1];
  	type[0] = typeof(System.String);
	il.Emit(OpCodes.Ldstr, "");                //This is just to do a WriteLine after the Print.
  	il.Emit(OpCodes.Call, ((typeof(System.Console)).GetMethod("WriteLine", type)));
	
    }