有没有办法将泛型类型约束为n维数组?
所以,T[]
,T[,]
,T[,,]
,......等等。
我基本上尝试将扩展方法添加到我所拥有的任何类型的数组中。因此,我希望使用泛型来获得这些方法的组合,因此我不需要重复内部代码
public static bool IsFull(this MyType[] self) { ... }
public static bool IsFull(this MyType[,] self) { ... }
public static bool IsFull(this MyType[,,] self) { ... }
一种方法看起来像这样,但应该具有[,]
,[,,]
等完全相同的逻辑:
public static bool IsFull(this MyType[] self)
for (int i=0; i < self.Length; i++) {
MyType t = self.GetValue(i);
if (t == null || !t.IsFull()) {
return false;
}
}
return true;
答案 0 :(得分:0)
我相信你最终必须检查你的数组元素是MyType
的实例还是另一个数组 - 如果这是可以接受的,那么也许你可以在System.Array
上添加一个扩展名 - 如下所示:
public static class Extension
{
public static bool IsFull(this Array self)
{
for (int i = 0; i < self.Length; i++)
{
var t = self.GetValue(i);
var arrT = t as Array;
var tt = t as MyType;
if (t == null || (arrT != null && !arrT.IsFull()) || (tt != null && !tt.IsFull()))
{
return false;
}
}
return true;
}
}