* TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
[mono-project.git] / mcs / errors / bug12.cs
blob27c24e93eb794183098492065a4ceb1c48aa727e
1 using System.Collections;
3 class PtrHashtable : Hashtable {
4 class PtrComparer : IComparer {
5 public int Compare (object x, object y)
7 if (x == y)
8 return 0;
9 else
10 return 1;
14 public PtrHashtable ()
16 comparer = new PtrComparer ();