• 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/20

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;

20 Cards in this Set

  • Front
  • Back
What is WPF
Windows Presentation Foundation
What is WCF
Windows Communication Foundation
What is LINQ
Language-Integrated Queries
What is CLR
common language runtime
Any code that is compiled to run in the CLR is called
managed code
managed code automatically contains
metadata
The compiler
translates your code into
Microsoft intermediate language (MSIL)
Partial classes , also called
partial types ,
Abstraction means to
create a model of an object
Encapsulation refers to
the combination of characteristics of an object along
with its behaviors.
Inheritance is
the ability to create a new class from an existing class.
The real purpose of inheritance is
reusability
A derived class with a method named the same as a method in
the base class is said to
override the method in the base class.
Overriding allows
an inherited class to
take different actions from the identically named
method in the base class.
The term polymorphism actually means
the ability to take on many shapes or
forms.
polymorphism As applied to OOP, polymorphism refers to
method names that have
identical names but different implementations
A constructor is a
a method that automatically executes when a class is instantiated.
A destructor is a
method that automatically executes when an object is
destroyed.
In VB, the constructor must be a procedure named
New
The
destructor must be named
Dispose