Reference a Namespace
suggest changeusing System.Text;
//allows you to access classes within this namespace such as StringBuilder
//without prefixing them with the namespace. i.e:
//...
var sb = new StringBuilder();
//instead of
var sb = new System.Text.StringBuilder();
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents