Pavan R Bhupalam
Which class that has Methods those cannot be inherited
By Pavan R Bhupalam in C# on Aug 21 2013
  • Gokul Rathod
    Nov, 2014 25

    sealed class

    • 0
  • plm
    Sep, 2013 19

    By using the keyword sealed with the method in the parent class prevent it from inheriting.public class employee{ sealed void display(); }

    • 0
  • Pavan R Bhupalam
    Aug, 2013 21

    Public Class A
    {
    sealed void Print()
            {
                Console.WriteLine("C-sharp");

            }
    }

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS