What is different between an abstract and an Interface class in C#?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
Also, abstract classes may have some functions defined but interfaces will not have any function definition and the deriving class must define all of them.
Google "abstract class vs interface" and you'll get lots of explanatory articles...