3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

データ型にエイリアスを付ける(C#12)

Posted at

参考

この記事は、以下の動画を参考にしています。
詳しくは、動画をご覧ください。

以下の記事も、参考にしてください。

using alias

C#11以前でも、データ型にエイリアス(別名)を付けることはできました。

using IntList = System.Collections.Generic.List<int>;

C#12からは、以下のものに対しても、エイリアスを付けることができます。

  • C#のキーワードとして用意されているデータ型
    using Integer = int;
    
  • 配列
    using IntegerArray = int[];
    
  • Null許容型
    using NullableInteger = int?;
    
  • タプル
    using Person = (string firstName, string lastName);
    
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?