TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
will motill
NA
1
3.6k
List of stringbuilders from stringbuilder's lines
Apr 13 2014 5:58 PM
hi first post here
i am a little unsure of the code iv'e written as...
im pretty noob with the stringbuilder class
my app will rely on as few gc collections as possible text can be a problem
but i have specific problem were
i need to pull appended lines from a stringbuilder object
put it into a list or array of stringbuilders
keep the original and modify the list elements lengths to shorten them
the real problem is im unsure if this is ok what im doing
or if there is a better way already
public static List<StringBuilder> StringBuilderSplit(StringBuilder sb_text)
{
List<StringBuilder> sb_list = new List<StringBuilder>();
sb_list.Add(new StringBuilder());
char line_break_char = '\n';
if (false == char.TryParse(Environment.NewLine, out line_break_char)) { line_break_char = '\n'; }
//
int sbli = 0;
for (int i = 0; i < sb_text.Length; i++)
{
if (sb_text[i].CompareTo(line_break_char) != 0)
{
sb_list[sbli].Append(sb_text[i]);
}
else
{
sb_list.Add(new StringBuilder());
sbli++;
}
}
return sb_list;
}
Reply
Answers (
1
)
Why the code give me an error
Combo Population using n Tier Architecture