CloverExamplePOS.StoreDiscount.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

public static operator ( ) : StoreDiscount
리턴 StoreDiscount
        public static StoreDiscount operator +(StoreDiscount StoreDiscount, EventHandler handler)
        {
            StoreDiscount.DiscountButton.Click += handler;
            StoreDiscount.DiscountPrice.Click += handler;
            StoreDiscount.DiscountNumber.Click += handler;
            return StoreDiscount;
        }