G
Guest
base {System.SystemException} = {"Method may only be called on a Type for
which Type.IsGenericParameter is true."}
I have created a simple DLL.
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace foonamespace
{
public class foo : HeatDrivers.Ifoo
{
public string testfoo(string testme)
{
return testme + "been tested";
}
}
When I try to load the assembly I get a number of errors which seem to
bubble up -> base {System.SystemException} = {"Method may only be called on a
Type for which Type.IsGenericParameter is true."}
What does it mean ? I cant follow the MSDN site to know what I should have
included if anything. I did extract an interface & build a DLL from that
extraction, BUT would that change anything ? Thanks
which Type.IsGenericParameter is true."}
I have created a simple DLL.
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace foonamespace
{
public class foo : HeatDrivers.Ifoo
{
public string testfoo(string testme)
{
return testme + "been tested";
}
}
When I try to load the assembly I get a number of errors which seem to
bubble up -> base {System.SystemException} = {"Method may only be called on a
Type for which Type.IsGenericParameter is true."}
What does it mean ? I cant follow the MSDN site to know what I should have
included if anything. I did extract an interface & build a DLL from that
extraction, BUT would that change anything ? Thanks