What does it mean ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I see in source this:
for (int nComIndex = 0; nComIndex < comColl->Count; nComIndex+F+)
{
....
}

What does it mean "+F+" ?

Thanks !
Peter
 
I would say a typo (?)

I am just curious on why you want to use the -> operator in C# ?

Gabriel Lozano-Morán
 
Looks either like a typo or maybe not C# at all...?

IMO, it should be

for (int nComIndex = 0; nComIndex < comColl.Count; nComIndex++)
 
Sorry I make error in my question,
the asked C# code text is:
"for (int nComIndex = 0; nComIndex < comColl.Count; nComIndex+F+)"
OK, it is typo :-)
Thanks !
P.
 
Back
Top