GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 int
예제 #1
0
 public int CompareTo(object obj)
 {
     if (obj is WebcamConfiguration)
     {
         WebcamConfiguration y = (WebcamConfiguration)obj;
         return(this.GetHashCode() - y.GetHashCode());
     }
     else
     {
         return(int.MinValue);
     }
 }