Main.cs  
     
- using- System;
- struct- One {
-  publicstringshowText() {
-   return"Привет Мир!";
-  }
- }
- class- Program {
-  publicstaticintMain() {
-   One O =newOne();
-   Console.WriteLine(O.showText());
-   Console.ReadKey();
-   return0;
-  }
- }
- using- System;
- struct- One {
-  publicstringshowText() {
-   return"Привет Мир!";
-  }
- }
- class- Program {
-  publicstaticintMain() {
-   One O =newOne();
-   Console.WriteLine(O.showText());
-   Console.ReadKey();
-   return0;
-  }
- }
    
Привет Мир!