4 writes to _arrayNullsAllowed
System.Formats.Nrbf (4)
System\Formats\Nrbf\ArrayOfClassesRecord.cs (1)
33=> (ClassRecord?[])(allowNulls ? _arrayNullsAllowed ??= ToArray(true) : _arrayNullsNotAllowed ??= ToArray(false));
System\Formats\Nrbf\ArrayRecord.cs (1)
87? _arrayNullsAllowed ??= Deserialize(expectedArrayType, true)
System\Formats\Nrbf\ArraySingleObjectRecord.cs (1)
31=> (object?[])(allowNulls ? _arrayNullsAllowed ??= ToArray(true) : _arrayNullsNotAllowed ??= ToArray(false));
System\Formats\Nrbf\ArraySingleStringRecord.cs (1)
45=> (string?[])(allowNulls ? _arrayNullsAllowed ??= ToArray(true) : _arrayNullsNotAllowed ??= ToArray(false));