File: system\void.cs
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib)
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
////////////////////////////////////////////////////////////////////////////////
// Void
//    This class represents the void return type
////////////////////////////////////////////////////////////////////////////////
 
namespace System {
   
    using System;
    [Serializable]
    [System.Runtime.InteropServices.ComVisible(true)]
    public struct Void 
    {
    }
}