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

CodeObject.cs « System.CodeDom « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35b6053e73cdd8526e065b03499fcfe6a6c07d31 (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
//
// System.CodeDom CodeObject class implementation
//
// Author:
//   Sean MacIsaac (macisaac@ximian.com)
//   Daniel Stodden (stodden@in.tum.de)
//
// (C) 2001 Ximian, Inc.
//

using System.Runtime.InteropServices;
using System.Collections;
using System.Collections.Specialized;

namespace System.CodeDom
{
	[Serializable]
	[ClassInterface(ClassInterfaceType.AutoDispatch)]
	[ComVisible(true)]
	public class CodeObject
	{
		private IDictionary userData;

		//
		// Properties
		//
		public IDictionary UserData {
			get {
				if ( userData == null )
					userData = new ListDictionary();
				return userData;
			}
		}
	}
}