GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 int
예제 #1
0
 public static void AutomationElementGetHashCode(AutomationElement element)
 {
     Dump("GetHashCode()", true, element);
     try
     {
         object obj = element.GetHashCode();
     }
     catch (Exception exception)
     {
         VerifyException(element, exception, typeof(ElementNotAvailableException));
     }
 }