Tagged Questions
8
votes
5answers
2k views
Best way to split string into lines
How do you split multi-line string into lines?
I know this way
var result = input.Split("\n\r".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
looks a bit ugly to me and it looses empty ...
5
votes
8answers
791 views
Best syntax to create multi-line string
What's the best way to create multi-line string in C#?
I know the following methods:
Using StringBuilder
var result = new StringBuilder().AppendLine("one").AppenLine("two").ToString()
looks too ...
2
votes
5answers
481 views
new line in a multi-line string
Trying to override a tostring in one of my classes.
return string.Format(@" name = {0}
ID = {1}
sec nr = {2}
acc nr = {3}", ...
0
votes
1answer
57 views
multiline datagridviewcell while in edit mode
I am using the following code so that gridview cell support multiline while in edit mode :
private void dataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs ...