using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System.Reflection
{
/// Represents a missing . This class cannot be inherited.
// Token: 0x02000250 RID: 592
[ComVisible(true)]
[Serializable]
public sealed class Missing : ISerializable
{
// Token: 0x06001E90 RID: 7824 RVA: 0x000711D8 File Offset: 0x0006F3D8
internal Missing()
{
}
/// Sets a object with the logical context information needed to recreate the sole instance of the object.
/// The object to be populated with serialization information.
/// The object representing the destination context of the serialization.
///
/// is null.
// Token: 0x06001E92 RID: 7826 RVA: 0x000711EC File Offset: 0x0006F3EC
[MonoTODO]
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// Represents the sole instance of the class.
// Token: 0x04000AA3 RID: 2723
public static readonly Missing Value = new Missing();
}
}