static List<int>

what is List<int>

what kind of syntax is that and where can I find info on List<Int>
I have enver used it.

please help

List<T> is a type of generic collection. When you create an instance of an a generic you have to specify what type of objects will be in the collection, thus the <int> in your example (meaning a List of int).

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.