看在抽象工厂模式的时候有些不懂。
public class Control
{

/// <summary>
/// 水果的种类,用户根据选择种类而得到类
/// </summary>
public enum Kind
{
Apple,Banana,Orange
}
       }
//为什么不用实例化Control可以直接调用
Control.Kind