Reference a Namespace

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

Feedback about page:

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



Table Of Contents