| inheritance/constructors-inheritance-2/init.cs - The class Init and the method InitMe. | Lecture 7 - slide 26 : 40 Program 4 |
using System;
public class Init{
public static int InitMe(int val, string who){
Console.WriteLine(who);
return val;
}
}