Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
NullabilityInfo.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3public sealed class NullabilityInfo
4{
5 public Type Type { get; }
6
7 public NullabilityState ReadState { get; internal set; }
8
9 public NullabilityState WriteState { get; internal set; }
10
12
14
16 {
17 Type = type;
18 ReadState = readState;
19 WriteState = writeState;
21 GenericTypeArguments = typeArguments;
22 }
23}
NullabilityInfo(Type type, NullabilityState readState, NullabilityState writeState, NullabilityInfo elementType, NullabilityInfo[] typeArguments)