Home Forums C# Programming Inheritance in C#

Viewing 1 reply thread
  • Author
    Posts
    • #1926
      niklaesh
      Participant

      Does C# have the same inheritance procedure as java have? Or you can inherit multiple classes into your class. and what is the procedure to inherit a class in your own class?

    • #3176
      msaqib
      Participant

      C#.NET supports single inheritance of classes. One class can be derived from a single class.

      Here MyFirstClass inherits MyFirstClass and its properties and methods.
      C#.NET does not support private and public inheritance just lik C++.
      C# supports abstract classes and abstract functions like in java. You can not make the instance of an abstract class.

Viewing 1 reply thread
  • The forum ‘C# Programming’ is closed to new topics and replies.