Back to slide -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'          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;
  }

}