We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe274b7 commit 9c5fe5dCopy full SHA for 9c5fe5d
1 file changed
src/MemoryPack.Unity/Assets/Tests/MemoryPackObjects/MemberKinds.cs
@@ -16,9 +16,9 @@ public partial class MemberKindsAllUnmanaged
16
public int A; // public field
17
[MemoryPackInclude]
18
private int B; // private field
19
- // public readonly int C; // public readonly field
20
- // [MemoryPackInclude]
21
- // private readonly int D; // readonly field
+ public readonly int C; // public readonly field
+ [MemoryPackInclude]
+ private readonly int D; // readonly field
22
23
public int E { get; set; } // public property
24
public int F { private get; set; } // private get
0 commit comments