S
Steve B.
Hi,
In a class library, I have a static utility class with a methods that
accepts a generic delegate :
public delegate void MyDelegate<T>(
T dataItem,
string mappingName,
) where T : System.Data.DataRow;
And a method that use such a delegate :
public static void MyMethod<T>(
MyDelegate<T> theMethod
) where T : DataRow
{
....
}
When I call MyMethod from a device windows application, it cannot compile
(genasm error).
Is there any way to make it compile ?
Note that if I compile with VS 2005 SP1 Beta, it compile w/o problem.
Thanks,
Steve
In a class library, I have a static utility class with a methods that
accepts a generic delegate :
public delegate void MyDelegate<T>(
T dataItem,
string mappingName,
) where T : System.Data.DataRow;
And a method that use such a delegate :
public static void MyMethod<T>(
MyDelegate<T> theMethod
) where T : DataRow
{
....
}
When I call MyMethod from a device windows application, it cannot compile
(genasm error).
Is there any way to make it compile ?
Note that if I compile with VS 2005 SP1 Beta, it compile w/o problem.
Thanks,
Steve