+ 4
Hello . What the meaning of (abstract) in c# ?
3 ответов
+ 2
Abstract keyword in this context only makes sense when talking about classes. A class is abstract if it cannot be instantiated. This type of class cannot contain attributes(data), but it can contain methods(functions). They are mainly used as base classes for other classes. They are similar to interfaces, but has some different properties.
+ 2
thanks
0
how i can use anonymos class or interface in abestract class?
ther is heap or stak?