// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
////////////////////////////////////////////////////////////////////////////////
// Void
// This class represents an empty variant
////////////////////////////////////////////////////////////////////////////////
namespace System
{
using System;
//|
internal sealed class Empty
{
//Package private constructor
internal Empty() {
}
//|
public static readonly Empty Value = new Empty();
//|
public override String ToString()
{
return String.Empty;
}
}
}