Files
2020-12-17 15:23:33 +01:00

14 lines
218 B
Plaintext

namespace System.Runtime.CompilerServices
{
class IsExternalInit { }
}
namespace cil_init_prop
{
class SomeClass
{
public int Prop1 { get; set; }
public int Prop2 { get; init; }
}
}