Consider this code:
 MyStruct j;
 j.I = 3;
 Console.WriteLine(j.I);
Now see this method:
  public static void StructMod(MyStruct ms)
  {
      ms.I += 100;
      Console.WriteLine(ms.I);
  }
When we pass MyStruct to the method, should we initialize it before passing it? I.e.:
MyStruct j = new MyStruct()
 
     
     
     
    