Can you explain the class member in C # in detail?
|
1 answer
This is any entity that can be declared in a class:
- constant
- field
- property
- method
- event
- indexer
- operator
- constructor
- destructor
- static constructor
- nested type
|
This is any entity that can be declared in a class:
Source: https://ru.stackoverflow.com/questions/509813/
All Articles