コーディングスタイルの変更サンプル
// 元々こんな書き方 | |
void Method(){ | |
} | |
// こう直したい | |
void Method() | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// 元々こんな書き方 | |
void Method(){ | |
} | |
// こう直したい | |
void Method() | |
{ | |
} |