Advertisement
NadyaMisheva

metod

Nov 24th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. using System;
  2.  
  3. public class Program
  4. {
  5.     static void PrintHello()
  6.     {
  7.         Console.WriteLine("Hello");
  8.         Console.WriteLine("How are you");
  9.     }
  10.     public static void Main()
  11.     {
  12.         PrintHello();
  13.         PrintHello();
  14.         Console.WriteLine("--------");
  15.         PrintHello();
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement