はじめに
C#9.0
よりinit
アクセサーが登場しました。
public int Year { get; init; }
しかし現状のUnity(Unity2023.1
で実験)で利用しようとすると以下のようなエラーが出てきてしまうようです。
error CS0518: Predefined type 'System.Runtime.CompilerServices.IsExternalInit' is not defined or imported
これの対処法について紹介したいと思います。
解決方法
namespace System.Runtime.CompilerServices { internal static class IsExternalInit { } }
以下のコードをプロジェクト内に書くとエラーが出てこなくなります。