- // See https://aka.ms/new-console-template for more information
- SomeValType smtp = new SomeValType(41);
- Console.WriteLine("Hello, Worldy! "+ smtp.someInt);
- internal struct SomeValType{
- public int someInt;
- public SomeValType(int someInt){
- this.someInt = someInt;
- }
- }
|