Associate an Alias with a Namespace

suggest change
using 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();

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents