Removes all comments of the following formats in C#:
// Single line
/// Single line (doumentation)
/* Single line */
/*
* Multiline
*/(/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+/[\s]+)|(//.*[\s]+)Removes all comments of the following formats in C#:
// Single line
/// Single line (doumentation)
/* Single line */
/*
* Multiline
*/(/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+/[\s]+)|(//.*[\s]+)