Comments on: C# Intermediate – Abstract Classes https://code-maze.com/csharp-abstract-classes/ Learn. Code. Succeed. Thu, 10 Mar 2022 07:52:59 +0000 hourly 1 https://wordpress.org/?v=6.7.5 By: Dzhan https://code-maze.com/csharp-abstract-classes/#comment-5236 Thu, 10 Mar 2022 07:52:59 +0000 https://code-maze.com/?p=4696#comment-5236 In reply to DENIS YOVANI SALMERON CRUZ.

your abstract class will implement an interface so in the ui you wont be calling the abstract class for you childs but the interface, its much better

]]>
By: DENIS YOVANI SALMERON CRUZ https://code-maze.com/csharp-abstract-classes/#comment-2578 Thu, 15 Oct 2020 14:46:04 +0000 https://code-maze.com/?p=4696#comment-2578 It would be good to have examples of the implementation of an interface and of an abstract class

]]>
By: zk op https://code-maze.com/csharp-abstract-classes/#comment-1465 Tue, 17 Sep 2019 12:54:44 +0000 https://code-maze.com/?p=4696#comment-1465 In reply to Marinko.

Okay Sir, nice explanation. good job.

]]>
By: Marinko https://code-maze.com/csharp-abstract-classes/#comment-1464 Tue, 17 Sep 2019 05:47:03 +0000 https://code-maze.com/?p=4696#comment-1464 In reply to zk op.

Hello zk op. Derived class must implement all abstract members of an abstract class. Otherwise, you would get an error. It is important to notice that if abstract class has a mixture of abstract and non-abstract members, the derived class must implement only abstract members. The other, non-abstract members, are inherited.

]]>
By: zk op https://code-maze.com/csharp-abstract-classes/#comment-1463 Tue, 17 Sep 2019 05:30:59 +0000 https://code-maze.com/?p=4696#comment-1463 does derived class need to implement all method from abstract method in abstract classes?

]]>