I want to create my own EMailAddress class that acts like a string class.
So I like to do this
private EMailAddress _emailAddress = "Test@Test.com";
instead of
private EMailAddress _emailAddress = new EMailAddress("Test@Test.com");
Is there any way to accomplish what I want, or do I need to use the second alternative. Since string is sealed I can't use that, and the = operator can't be overloaded so I am out of ideas how to fix this....