Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
how to add string builder namespace in asp.net???? i can add in c#.net but i can't in asp.net!!! pls any one help me???
Posted
Comments
joshrduncan2012 1-Nov-12 12:01pm    
Can you show us what you have tried so far?

C#
using System.Text;
 
Share this answer
 
To use the string builder in asp.net
First add to your class
using System.Text

Second add to your code
var myStringBuilder = new StringBuilder();


if that fails check your references
 
Share this answer
 
v2
name space for String Builder

using System.Text;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900