コード例 #1
0
ファイル: DeprPct.cs プロジェクト: zhiyang-qin/dotnet-core
 public void copyFrom(DeprPct deptPct)
 {
     this.Percentage = deptPct.Percentage;
 }
コード例 #2
0
ファイル: DeprPct.cs プロジェクト: zhiyang-qin/dotnet-core
        public override bool Equals(object obj)
        {
            DeprPct that = obj as DeprPct;

            return(this == that);
        }