Advertisement
NadyaMisheva

metodi (string)

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