| 123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * Namespace: System.Web.UI
- * Class: Pair
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Implementation: yes
- * Contact: <[email protected]>
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
- using System;
- using System.Web;
- using System.Collections;
- using System.Collections.Specialized;
- namespace System.Web.UI
- {
- public class Pair
- {
- public object First;
- public object Second;
-
- public Pair(object first, object second)
- {
- First = first;
- Second = second;
- }
-
- public Pair()
- {
- }
- }
- }
|