summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Void.cs
blob: e4a5e5ec1938dd799b249eacde8240b7848f1ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

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

namespace System {
   
    using System;
    [Serializable]
    [System.Runtime.InteropServices.ComVisible(true)]
    public struct Void 
    {
    }
}