1: using tellMe = System.Console;
     2: 
     3: namespace smallTownUSA 
     4: {
     5:   
     6:   class Dismissed
     7:   {
     8:     private object[] ofDesire;
     9:     public void Humiliation(string himOn, string himOn2)
    10:     {
    11:       ofDesire = new object[2];
    12:       ofDesire[0] = himOn;
    13:       ofDesire[1] = himOn2;
    14:     }
    15:     private void Reconciliation()
    16:     {
    17:       tellMe.Write(ofDesire[0]);
    18:     }
    19:     static int Main()
    20:     {
    21:       Dismissed Jill = new Dismissed();
    22:       Jill.Humiliation("Jack","Bob");
    23:       Jill.Reconciliation();
    24:       return 1;
    25:     }
    26:   }
    27: }
    28: