You didn't hear it wrong :)
RegexOptions.Multiline option dosen't work C#.Net Regex.
There is a little suggestion. You can use;
strContent = strContent.Replace("\r","");
strContent = strContent.Replace("\n","");
I hope it's usefull ;)
Have a nice day ;)
Selametle...