System.Delegate.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return base.GetHashCode();
        }

Usage Example

Beispiel #1
0
 public static object RunInAppDomain(Delegate delg, params object[] args) {
     AppDomain tempDomain = AppDomain.CreateDomain("domain_RunInAppDomain" + delg.GetHashCode());
     object returnValue;
     try {
         returnValue = RunInAppDomain(delg, tempDomain, args);
     }
     finally {
         AppDomain.Unload(tempDomain);
     }
     return returnValue;
 }
All Usage Examples Of System.Delegate::GetHashCode