• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/8

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

8 Cards in this Set

  • Front
  • Back
virtual
methods can be overriden by a derived class using the override keyword.
abstract
methods must be overriden in a derived class. If any method of a class is abstract, the entire class must be declared as abstract.
sealed
methods are methods that override an inherited virtual method having the same signature. When a method is sealed, it cannot be overriden in a derived class.
public
indicates the method is freely accessible inside and outside of the class in which it is defined.
internal
means the method is only accessible to types defined in the same assembly.
protected
means the method is accessible in the type in which it is defined, and in derived types of that type. This is used to give derived classes access to the methods in their base class.
protected internal
means the method is accessible to types defined in the same assembly or to types in a derived assembly.
private
methods are only accessible in the class in which they are defined.