c# – 为什么返回类型void在.NET中声明为struct?

前端之家收集整理的这篇文章主要介绍了c# – 为什么返回类型void在.NET中声明为struct?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
AFAIK void在编程语言方面没有任何意义.那么为什么在.Net框架中它被声明为struct?
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>
  [ComVisible(true)]
  [Serializable]
  [StructLayout(LayoutKind.Sequential,Size = 1)]
  public struct Void
  {
  }
}

解决方法

System.Void实际上是一个标记类型 – 像 MethodInfo.ReturnType这样的成员必须有一些代表void的方法,而System.Void是.NET团队选择的方式.

你不应该像普通型一样使用它.这是一个有效的解决方法 – 有点像F# Unit type,但不完全集成到类型系统中.

原文链接:https://www.f2er.com/csharp/96159.html

猜你在找的C#相关文章