Reference a Namespace C# with Example



Reference a Namespace C# with Example

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(); 

0 Comment's

Comment Form

Submit Comment