csharp remove all punctuation from string

Code Example - csharp remove all punctuation from string

                
                        string output = new string(OriginalString.Where(c => !char.IsPunctuation(c)).ToArray());