Click here to Skip to main content
15,949,741 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I write this line
IntRange l = new IntRange(Byte.Parse(1), Byte.Parse(5));

and i get this error
Error   1   The type or namespace name "IntRange" could not be found (are you missing a using directive or an assembly reference?)
so ,
what is the needed assembly reference
Posted
Updated 3-Jan-12 5:11am
v2

As far I can see, using Google, which you could have done very easily yourself, IntRange is a Java object with no equivalent in .NET.

If you have obtained this from a 3rd party assembly then you should have the reference.
 
Share this answer
 
I never heard of IntRange, at least never related to C#.

Maybe System.Collections.Generic.List<int> is what you are looking for.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900