Is there a generic constructor with parameter constraint in C#?

In C# you can put a constraint on a generic method like:

public class A {

    public static void Method<T> (T a) where T : new() {
        //...do something...
    }

}

Where you specify that T should have a constructor that requires no parameters. I’m wondering whether there is a way to add a constraint like “there exists a constructor with a float[,] parameter?

The following code doesn’t compile:

public class A {

    public static void Method<T> (T a) where T : new(float[,] u) {
        //...do something...
    }

}

A workaround is also useful?

8 Answers
8

Leave a Comment