Having trouble with a method call and getting a correct value back
问题 the method call in question is within this writeline call at the end Console.WriteLine("Taxpayer # {0} SSN: {1}, Income is {2:c}, Tax is {3:c}", i + 1, taxArray[i].SSN, taxArray[i].grossIncome, taxRates.CalculateTax(taxArray[i].grossIncome)); Here is the rates class which the method is in public class Rates { // Create a class named rates that has the following data members: int incLimit; double lowTaxRate; double highTaxRate; // use read-only accessor public int IncomeLimit { get { return