I'm trying to get the number of elements in this string array, but it won't let me take 1 away from Count
.
string [] Quantitys = Program.RecieptList[i].ItemQuantitys.Split(new char[] {'*'});
for (int ii = 0; i <= Quantitys.Count - 1; ii++)
{
}
I get an error message stating
Operator '-' cannot be applied to operands of type 'Method Group' and 'Int'.
Whats the proper way to do this?
Simply add brackets (). Count() works for me now as well
It should be Length
not Count
for arrays:
string [] Quantitys = Program.RecieptList[i].ItemQuantitys.Split(new char[] {'*'});
for (int ii = 0; i <= Quantitys.Length - 1; ii++)
{
}
More information on the MSDN: Array.Length
Also, unless it was intentional, your ii
should just be i
in your for
loop:
for (int i = 0; i <= Quantitys.Length - 1; i++)
Although, as was pointed out in the comments below, you could also use the Quantitys.Count()
, since arrays inherit from IEnumerable<T>
. Personally, though, for one-dimensional arrays, I prefer to use the standard Array.Length
property.
Arrays have a Length
property, not a Count
property, though they do the same thing. The error you're seeing is because there's an extension method Count()
that it's finding instead, but can't quite use because you didn't invoke it with ()
. You could use your array as an IList<T>
instead so that you can keep the familiar Count
property name.
Also, i
and ii
will be confusing to most people (including yourself, from the looks of it: you included both in your for
line). The standard in programming, carried over from mathematics, is i
, j
, k
, ... for index variable names. This will work:
IList<string> Quantitys = Program.RecieptList[i].ItemQuantitys.Split(new char[] {'*'});
for (int j = 0; j <= Quantitys.Count - 1; j++)
{
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With