コード例 #1
0
        private static void Main(string[] args)
        {
            Empolyee data = new Empolyee();

            Console.Write("請輸入底薪及獎金值:");
            double
        }
コード例 #2
0
 public bool Equals(Empolyee other)
 {
     return(this.baseSalary == other.baseSalary &&
            this.benefit == other.benefit &&
            this.salary == other.salary);
 }