namespace ConsoleApplication8
{
public class Foo<T>
where T : IFoo, IFoo2
{
public Foo(T fooThing)
{
}
}
public interface IFoo
{
string Name {get;}
}
public interface IFoo2
{
string Name2 {get;}
}
}
VS 2010 UML类图设计器中的模板参数集合编辑器似乎不允许您向单个泛型类型参数添加多个约束。
(图片被拒绝,因为我没有足够的“声誉”点)
我错过了什么吗?基本上,我如何在VS 2010 UML类设计器中建模多个类型参数约束,如代码示例中那样?
答案 0 :(得分:0)
你是对的 - VS无法证明这一点。用户界面只允许您选择一种约束类型。