Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Project
  4. {
  5.     public class MyClass
  6.     {
  7.         puclic static void foo()
  8.         {
  9.             Console.WriteLine("Hello World!");
  10.         }
  11.     }
  12. }
  13.  
  14.  
  15.  
  16. ----------------------------------------------------------
  17.  
  18.  
  19. using System;
  20. using Project;
  21.  
  22. class Program
  23. {
  24.     public static void Main(string[] args)
  25.     {
  26.         MyClass.foo();
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement