Update query example (synced file)

This commit is contained in:
Owen Mansel-Chan
2026-07-06 14:37:46 +01:00
parent 366d70bfee
commit f67b7299f9

View File

@@ -16,6 +16,6 @@ public class PersonBad : ISerializable
[OnDeserializing]
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
Age = info.GetInt32("age"); // $ Alert // BAD - write is unsafe
Age = info.GetInt32("age"); // $ Alert[cs/serialization-check-bypass] // BAD - write is unsafe
}
}