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

}