summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/Void.cs
blob: 5c20f634fcc2788b5cb7d8e4cb5bfcd3a56f3de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

////////////////////////////////////////////////////////////////////////////////
// Void
//    This class represents the void return type
////////////////////////////////////////////////////////////////////////////////

namespace System
{
    // This class represents the void return type
    [Serializable]
    public struct Void
    {
    }
}