include::../description.adoc[] == Noncompliant Code Example ---- Public Class Foo ' Noncompliant Private optionalField As Integer = 5 End Class ---- == Compliant Solution ---- Public Class Foo Private optionalField As Integer = 5 Private Sub OnDeserializing(ByVal context As StreamingContext) optionalField = 5 End Sub Private Sub OnDeserialized(ByVal context As StreamingContext) End Sub End Class ---- ifdef::env-github,rspecator-view[] ''' == Comments And Links (visible only on this page) include::../comments-and-links.adoc[] endif::env-github,rspecator-view[]