Is this a clean and correct way to generate a list of consecutive uints
?
The cast looks kind of ugly, but I'm a beginner...might be there is a method without casting around?
public class Test
{
static readonly IEnumerable<uint> AvailableChannels
= (IEnumerable<uint>)Enumerable.Range(1,1000);
}