Hey everyone,
I am newbie to C# and VS.NET.
I am creating a very small windows application in visual studio 2003. I have single form (form1.cs) that has textboxes for the user to enter the balance, apr and monthly payment for 3 credit cards (9 text boxes).
I would like to create 3 arrays containing the values from each input category. This should be done in a separate class file.
Additional classes file will containing a method that will read the values in the apr array and sort them based on highest APR value, A method that will total calculate the average apr values and the sum of the balance values
How should I apporach this in .net?
I am newbie to C# and VS.NET.
I am creating a very small windows application in visual studio 2003. I have single form (form1.cs) that has textboxes for the user to enter the balance, apr and monthly payment for 3 credit cards (9 text boxes).
I would like to create 3 arrays containing the values from each input category. This should be done in a separate class file.
Additional classes file will containing a method that will read the values in the apr array and sort them based on highest APR value, A method that will total calculate the average apr values and the sum of the balance values
How should I apporach this in .net?