mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-06-27 13:33:13 +00:00
Nullable Attributes
This commit is contained in:
@ -13,11 +13,12 @@
|
||||
public sealed class NullableAttribute : Attribute
|
||||
{
|
||||
public readonly byte[] Flags;
|
||||
public readonly byte Flag;
|
||||
//public readonly byte Flag;
|
||||
|
||||
public NullableAttribute(byte flag)
|
||||
{
|
||||
Flag = flag;// new byte[] { flag };
|
||||
//Flag = flag;
|
||||
Flags = new byte[] { flag };
|
||||
}
|
||||
public NullableAttribute(byte[] flags)
|
||||
{
|
||||
|
Reference in New Issue
Block a user