コード例 #1
0
 public override int GetHashCode()
 {
     Console.WriteLine("I am not getting clled");
     return(StudentID.GetHashCode());
 }
コード例 #2
0
 /// <summary>
 /// Get a hash code for the current object.
 /// </summary>
 /// <returns></returns>
 public override int GetHashCode()
 {
     return(ID.GetHashCode() * 2 - StudentID.GetHashCode() - Grade.GetHashCode());
 }
コード例 #3
0
ファイル: Student.cs プロジェクト: war-man/StudentCourseWPF
 public override int GetHashCode()
 {
     return(StudentID.GetHashCode());
 }