15 lines
306 B
C#
15 lines
306 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Specifies a return value type for a method that does not return a value.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x02000032 RID: 50
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public struct Void
|
|
{
|
|
}
|
|
}
|