singrdk/base/Applications/Runtime/Full/System/Void.cs

21 lines
455 B
C#

// ==++==
//
// 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
{
}
}