| 123456789101112131415161718192021222324252627282930313233 |
- //
- // System.Runtime.Serialization.SerializationEntry.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Runtime.Serialization
- {
- public struct SerializationEntry
- {
- string name;
- Type objectType;
- object value;
-
- // Properties
- public string Name
- {
- get { return name; }
- }
- public Type ObjectType
- {
- get { return objectType; }
- }
- public object Value
- {
- get { return value; }
- }
- }
- }
|