private Result Execute(
out T returnValue,
string storedProcedureName,
Hashtable parameters,
ExecuteType executeType)
where T : class
次のエラーはどういう意味ですか、どうすれば修正できますか?
ここでのエラー:非ジェネリック宣言での制約は許可されていません
private Result Execute<T>(
out T returnValue,
string storedProcedureName,
Hashtable parameters,
ExecuteType executeType
) where T : class
<T>
の後に必要なことに注意してくださいExecute
。
はい拡張メソッドでも機能します。
class Class1<T> where T:class
{
public void MethodA()
{
Console.WriteLine("Method A");
}
}
static class ExtenstionTest
{
public static void MethodA<T>(this Class1<T> A1, int a) where T : class
{
Console.WriteLine("Extension Method A" + a);
}
}