-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle all primitive types. #1
Comments
[TestCase('a')]
[TestCase('\t')]
public void Char(char value)
{
var with = new WithMutable<char> { Value = value };
var actual = Xml.Serialize(with);
var expected = Reference.Xml(with);
Assert.AreEqual(expected, actual);
} |
Where would BigInteger fall in the grand scheme of things? |
IntPtr and UIntPtr are primitive types too, I think. |
Would |
@jnm2 how would you like the defaults for serializing |
ISO 8601 would be my preference. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Specification: https://www.w3.org/TR/xmlschema-2/
The text was updated successfully, but these errors were encountered: