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