J
Jeff
hi
is the C# operator for division: /
and the modulus operator % ???
I've read c++ uses those (atleast my old c++ book has an example with those
operators), but not sure if C# has some better operators etc... I want to
use the division/modulus when developing wrapper for a class, I have a class
lets call it Car, So List<Car> creates a list of car objects, This list I
want to transform to a another list which contains 3 Cars on each level...
So I created a wrapper class which has 3 variables referecing 3 Car
objects.... So then use the division/modulus looping through List<Car>
creating the List<Wrapper>
any ideas?
is the C# operator for division: /
and the modulus operator % ???
I've read c++ uses those (atleast my old c++ book has an example with those
operators), but not sure if C# has some better operators etc... I want to
use the division/modulus when developing wrapper for a class, I have a class
lets call it Car, So List<Car> creates a list of car objects, This list I
want to transform to a another list which contains 3 Cars on each level...
So I created a wrapper class which has 3 variables referecing 3 Car
objects.... So then use the division/modulus looping through List<Car>
creating the List<Wrapper>
any ideas?