提交 c4ec3baf 编写于 作者: S Shay Rojansky 提交者: Andy Gocke

Fix NullableAttribute.Flags->NullableFlags in docs (#36907)

上级 6f6f1fcf
...@@ -23,11 +23,11 @@ namespace System.Runtime.CompilerServices ...@@ -23,11 +23,11 @@ namespace System.Runtime.CompilerServices
public readonly byte[] NullableFlags; public readonly byte[] NullableFlags;
public NullableAttribute(byte flag) public NullableAttribute(byte flag)
{ {
Flags = new byte[] { flag }; NullableFlags = new byte[] { flag };
} }
public NullableAttribute(byte[] flags) public NullableAttribute(byte[] flags)
{ {
Flags = flags; NullableFlags = flags;
} }
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册