using System;
using System.Linq.Expressions;
class Program
{
static void Main()
{
Expression<Func<float, uint>> expr = x => (uint) x;
Func<float,uint> converter1 = expr.Compile();
Func<float,uint> converter2 = x => (uint) x;
var aa = converter1(float.MaxValue); // == 2147483648
var bb = converter2(float.MaxValue); // == 0
}
}
Такое же поведение может быть создано при компиляции Expression.Convert
для этих преобразований:
Single -> UInt32
Single -> UInt64
Double -> UInt32
Double -> UInt64
Выглядит странно, не так ли?
< === Добавлено несколько моих исследований === >
Я смотрю на скомпилированный код MSIL DynamicMethod
, используя DynamicMethod Visualizer и некоторые размышления взломать get DynamicMethod
из скомпилированного Expression<TDelegate>
:
Expression<Func<float, uint>> expr = x => (uint) x;
Func<float,uint> converter1 = expr.Compile();
Func<float,uint> converter2 = x => (uint) x;
// get RTDynamicMethod - compiled MethodInfo
var rtMethodInfo = converter1.Method.GetType();
// get the field with the reference
var ownerField = rtMethodInfo.GetField(
"m_owner", BindingFlags.NonPublic | BindingFlags.Instance);
// get the reference to the original DynamicMethod
var dynMethod = (DynamicMethod) ownerField.GetValue(converter1.Method);
// show me the MSIL
DynamicMethodVisualizer.Visualizer.Show(dynMethod);
И я получаю этот код MSIL:
IL_0000: ldarg.1
IL_0001: conv.i4
IL_0002: ret
И равный С# -компилированный метод имеет это тело:
IL_0000: ldarg.0
IL_0001: conv.u4
IL_0002: ret
Кто-нибудь теперь видит, что ExpressionTrees компилирует недопустимый код для этого преобразования?