UML类图

代码实现:
public class Component
{
public static Component ComponentInstance { get; private set; }
private Component(){}
static Component()
{
ComponentInstance = new Component();
}
}UML类图

代码实现:
public class Component
{
public static Component ComponentInstance { get; private set; }
private Component(){}
static Component()
{
ComponentInstance = new Component();
}
}
737
909
1548

被折叠的 条评论
为什么被折叠?