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); } }