Back to notes -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    A Client of class BankAccount.Lecture 5 - slide 9 : 29
Program 3
using System;

public class Client {

  public static void Main(){
    BankAccount ba1 = new BankAccount("Bill",100);

    ba1.Owner = "James";
    ba1.Balance = 5000;

    Console.WriteLine(ba1.Owner);
    Console.WriteLine(ba1);
  }

}