Generic Classes | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 2

Generic Classes

I've tried to understand generic classes but i couldn't understand it perfectly..who can help me

15th Feb 2019, 4:29 PM
Manhal EB šŸ”°
Manhal EB šŸ”° - avatar
1 Resposta
+ 1
A generic class is just a class that can hold any type of data. The best generic class is list List<string> stringlist = new List<string>(); List<int> stringlist = new List<int>(); List<MyClass> stringlist = new List<MyClass>(); Generic is not free. You need to tell the compiler which type you are using. But with list you are able to use the same type for lots of different data types.
15th Feb 2019, 8:53 PM
sneeze
sneeze - avatar