LoginSignup
0
1

More than 3 years have passed since last update.

[C# Tip] 1ステイトメントには1変数宣言

Last updated at Posted at 2019-03-22

開発チーム用、社内メモ

わかりずらいので、ローカル変数は1行ずつちゃんと指定してくださいまし。


public class YourBadCode
{
   private string name1, name2;
}

public class MyGoodCode
{
   private string name1;  // name for 1
   private string name2;  // name for 2
}
0
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1