Brian Friesen
Brian Friesen
When the new `PersistEnumsByName` setting is true, an enum is persisted by its name (`Enum.ToString()`) instead of by its numeric value. This is sort of an alternative solution to issue...
If a class is decorated with the XmlRootAttribute and specifies the Namespace property, the resulting xml does not add the namespace to the document's attributes. ``` c# [XmlRoot(Namespace = "http://example-namespace.com/")]...
Various combinations of constructors produce different results. ## Example class This is the class used for examples below. ``` c# public class Foo { private readonly int _bar; private readonly...
Oppan Wiki Style.
``` C# /// /// Provides intellisense for consumers of XSerializer. /// ```
Should be part of the abstract RegexNode class and include: - General description - Node-specific behavior - Success criteria specific to this instance of RegexNode, including: - Characters that will...
Examples: [\t] [\r\n] [\s]
So that I can better understand a character class, I want to break it down into its component parts. Example: ``` [abc] a b c ``` ``` [a-zA-Z0-9_] Characters from...