vote up 4 vote down star

.NET has System.Uri for Uris and System.IO.FileInfo for file paths. I am looking for classes which are traditionally object oriented in that they specify both meaning and behavior for the string which is used in the object's construction. What other useful string encapsulation classes exist?

Things such as regular expressions and StringBuilders are useful for the gross manipulation of strings but they aren't what I'm looking for.

flag

56% accept rate

5 Answers

vote up 4 vote down

Maybe System.Security.SecureString for strings which you do not want to be available in public memory.

using (System.Security.SecureString password = new System.Security.SecureString())
{
    password.AppendChar('s');
    password.AppendChar('e');
    password.AppendChar('c');
    password.AppendChar('r');
    password.AppendChar('e');
    password.AppendChar('t');
    password.MakeReadOnly();
}
link|flag
vote up 4 vote down
System.Net.Mail.MailAddress someMailAddress = new System.Net.Mail.MailAddress("me@example.org", "John Doe");
System.Console.WriteLine(someMailAddress.Address); // me@example.org
System.Console.WriteLine(someMailAddress.User); // me
System.Console.WriteLine(someMailAddress.Host); // example.org
System.Console.WriteLine(someMailAddress.DisplayName); // John Doe
System.Console.WriteLine(someMailAddress); // "John Doe" <me@example.org>

Does not change too much in the behaviour of the string, but provides a quite nice way of saving a mail address in a type-safe way. Also, this object can be added to a mail message object. :)

link|flag
vote up 2 vote down

Probably trivial, but there are also System.IO.DirectoryInfo and System.Info.Path

link|flag
System.IO.Path, I guess? – hangy Oct 3 '08 at 20:29
vote up 2 vote down

I've seen several projects storing Guids either as their string representation or as byte[] instead of using the native Guid class.

Guid id = Guid.NewGuid()
Console.WriteLine(id);
link|flag
vote up 1 vote down

System.Text.StringBuilder and System.Text.RegularExpressions.Regex

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.