Basically i am trying to deserialize data that is inside an byte array into objects. I am trying to use GetString method of UTF8 Encoding in order to read a string. Here is part of my code:
var mm = new DynamicMethod("get_value", typeof(object)
, new Type[] { typeof(byte[]), typeof(int), typeof(int), typeof(int) });
var utf8 = Encoding.GetEncoding("utf-8"); //l.GetValue(null, null).GetType().GetMethod("GetString");
var getstring = utf8.GetType().GetMethod("GetString", new Type[] { typeof(byte[]), typeof(int), typeof(int) });
// var getString = Encoding.UTF8.GetType().GetMethod("GetString", new Type[] { typeof(byte[]), typeof(int), typeof(int) });
var h = new EmitHelper(mm.GetILGenerator());
var defaultCase = h.ILGenerator.DefineLabel();
var lbs = new Label[] { h.DefineLabel(),h.DefineLabel()};
var getInt32Method = typeof(BitConverter).GetMethod("ToInt32", new Type[] { typeof(byte[]), typeof(int) });
//Arg0 = Byte [] , Arg1 = type, Arg2 = size, Arg3 = offset
h
.ldarg_1
.@switch(lbs)
.MarkLabel(defaultCase)
.ldnull
.ret();
h
.MarkLabel(lbs[0])
.ldarg_0
.ldarg_3
.call(getInt32Method)
.box(typeof(int))
.ret();
//THis is the function that is causing problem; If i remove this function works;
h
.MarkLabel(lbs[1])
.ldarg_0 //Load array
.ldarg_3 //Load Offset (index)
.ldarg_2 //Load Size (count)
.callvirt(getstring)
.boxIfValueType(typeof(string))
.ret();
return (GetValueDelegate)mm.CreateDelegate(typeof(GetValueDelegate));
I checked the method signature of 'getstring' outside of this code and it works. I tried removing '.boxIfAny' and i also tried using 'call' rather then 'callvirt'. As I understand 'callvirt' is for instance methods which applies in this case. Any Ideas?
Calling the
GetString
method requires an instance.I've simplified your code and made it into a SSCCE:
Load the actual invocation target before you call
h.ldarg_0 //Load array
. In its absence you'll indeed getSystem.InvalidProgramException
thrown by mscorlib.