Exemple #1
0
 public static void GacInstalledCallMethods()
 {
     GacInstalled gi = new GacInstalled();
     object obj = gi.Copy();
     IPermission ip = gi.CreateIdentityPermission(new Evidence());
     bool check = gi.Equals(new object());
     int hash = gi.GetHashCode();
     string str = gi.ToString();
 }
		public void GetHashCode_ ()
		{
			GacInstalled gac = new GacInstalled ();
			Assert.AreEqual (0, gac.GetHashCode ());
		}