Removes all comments of the following formats in C#:
// Single line
/// Single line (doumentation)
/* Single line */
/*| #!/bin/bash | |
| # Check if output file argument is provided | |
| if [ -z "$1" ]; then | |
| echo "Usage: $0 <output_file>" | |
| exit 1 | |
| fi | |
| output_file="$1" |
Removes all comments of the following formats in C#:
// Single line
/// Single line (doumentation)
/* Single line */
/*| /*************************************************************************************************** | |
| * FileName: PlatformHelper.cs | |
| * Date: 20180913 | |
| * Copyright: Copyright © 2017-2019 Thomas Corwin, et al. All Rights Reserved. | |
| * License: MIT License | |
| **************************************************************************************************/ | |
| using System; | |
| using System.IO; | |
| using System.Runtime.InteropServices; |