public static void Main()
var customer = new Customer();
Console.WriteLine("First get. Result: {0}", customer.CustAcct);
Console.WriteLine("Second get. Result: {0}", customer.CustAcct);
private double ? _custAcct = null;
_custAcct = GetCustAcct();
private double GetCustAcct()
Console.WriteLine("Something is taking a long time");