#241 – Declaring and Using Private Instance Methods
February 13, 2011 Leave a comment
You can include a method in a class that is private. It will be callable from other methods within the class, but not callable from outside the class.
In the example below, the PrintName method is visible from outside the class, but the PrintAge method can only be called from within the class.
public class Dog { public string Name; public int Age; public void PrintName() { Console.Write(Name); PrintAge(); } private void PrintAge() { Console.WriteLine(string.Format(" ({0})", Age)); } }
Code that attempts to call the PrintAge method from outside the class will not compile.
Dog kirby = new Dog(); kirby.Name = "Kirby"; kirby.Age = 14; kirby.PrintName(); kirby.PrintAge(); // compiler error