We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UTF-8 BOMありのファイルで下記の例(l.1)のように、 コメントを記載した状態だと全行複数行コメントの 内容であると認識されてしまいます。
sample.cs (UTF-8 BOMあり)
l.1 //********************** l.2 // comment 1 l.3 // comment 2 l.4 // comment 3 l.5 //********************** l.6 using System; l.7 using System.Text; l.8 using System.Reflection; l.9 namespace TEST l.10 { l.11 class Test l.12 { l.13 private int aaa; l.14 } l.15 }
上記の例では、カウント結果は以下のようになり、全行がコメント行とカウントされる。
ファイル 種類 カテゴリ 実行 空行 コメント 合計 sample.cs C# 0 0 15 15
The text was updated successfully, but these errors were encountered:
No branches or pull requests
UTF-8 BOMありのファイルで下記の例(l.1)のように、
コメントを記載した状態だと全行複数行コメントの
内容であると認識されてしまいます。
sample.cs (UTF-8 BOMあり)
上記の例では、カウント結果は以下のようになり、全行がコメント行とカウントされる。
ファイル 種類 カテゴリ 実行 空行 コメント 合計
sample.cs C# 0 0 15 15
The text was updated successfully, but these errors were encountered: