singrdk/base/Kernel/System/Void.cs

20 lines
454 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
////////////////////////////////////////////////////////////////////////////////
// Void
// This class represents the void return type
////////////////////////////////////////////////////////////////////////////////
namespace System {
using System;
//| <include path='docs/doc[@for="Void"]/*' />
public struct Void
{
}
}