csharp remove newline from string

Code Example - csharp remove newline from string

                
                        // Remove all newlines from the 'example' string variable
string cleaned = example.Replace("\n", "").Replace("\r", "");