-1

私は C# の初心者で、さまざまなスコープで変数を宣言することの効果を理解しようとしています。以下の間にかなりのパフォーマンスの違いはありますか?

例 1

class A
{
   static int i;
   static string temp;
}

class B
{
   while(true)
   {
       A.i=10;
       A.temp="Hello";
   }
}

例 2

class B
{
   int i;
   string temp;
   while(true)
   {
       i=10;
       temp="Hello";
   }
}

例 3

class A
{
   public int i;
   public string temp;
}

class B
{
A D = new A();
   while(true)
   {
       D.i=10;
       D.temp="Hello";
   }
}
4

1 に答える 1