Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Pair.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf13fabdce83603af0781532f1af7422b2b90078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
 * Namespace: System.Web.UI
 * Class:     Pair
 * 
 * Author:  Gaurav Vaish
 * Maintainer: gvaish@iitk.ac.in
 * Implementation: yes
 * Contact: <gvaish@iitk.ac.in>
 * 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()
		{
		}
	}
}