mscorlib(4.0.0.0) API with additions
CodeObject.cs
1 using System.Collections;
4 
5 namespace System.CodeDom
6 {
9  [ClassInterface(ClassInterfaceType.AutoDispatch)]
10  [ComVisible(true)]
11  public class CodeObject
12  {
13  private IDictionary userData;
14 
17  public IDictionary UserData
18  {
19  get
20  {
21  if (userData == null)
22  {
23  userData = new ListDictionary();
24  }
25  return userData;
26  }
27  }
28  }
29 }
Definition: __Canon.cs:3
IDictionary UserData
Gets the user-definable data for the current object.
Definition: CodeObject.cs:18
Specifies that the class can be serialized.
ClassInterfaceType
Identifies the type of class interface that is generated for a class.
Represents a nongeneric collection of key/value pairs.
Definition: IDictionary.cs:8
Provides a common base class for most Code Document Object Model (CodeDOM) objects.
Definition: CodeObject.cs:11
Implements IDictionary using a singly linked list. Recommended for collections that typically include...