Program.cs 292 B

12345678910111213
  1. // See https://aka.ms/new-console-template for more information
  2. SomeValType smtp = new SomeValType(41);
  3. Console.WriteLine("Hello, Worldy! "+ smtp.someInt);
  4. internal struct SomeValType{
  5. public int someInt;
  6. public SomeValType(int someInt){
  7. this.someInt = someInt;
  8. }
  9. }