Pair.cs 574 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * Namespace: System.Web.UI
  3. * Class: Pair
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Implementation: yes
  8. * Contact: <[email protected]>
  9. * Status: 100%
  10. *
  11. * (C) Gaurav Vaish (2001)
  12. */
  13. using System;
  14. using System.Web;
  15. using System.Collections;
  16. using System.Collections.Specialized;
  17. namespace System.Web.UI
  18. {
  19. public class Pair
  20. {
  21. public object First;
  22. public object Second;
  23. public Pair(object first, object second)
  24. {
  25. First = first;
  26. Second = second;
  27. }
  28. public Pair()
  29. {
  30. }
  31. }
  32. }