Tagged Questions

5
votes
8answers
823 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 ...
3
votes
3answers
900 views

How to do multiline search using regular expression?

I am new to regular expressions. I want to do multiline search. Here is the example of what I want to do: Suppose I have following text: *Project #1: CVC – Customer Value Creation (Sep 2007 – ...