Searching for: Class Declaration in C#
Interfaces
Language: C#

An interface provides a framework for a class. It gives method signatures and constants to the class to be implemented. A class that uses an interface implements the interface.

String Variables
Language: C#

Used to declare a variable which holds a string.

Inheritance
Language: C#

Inheritance is used to define an object with properties from another object or interface, or to inherit another object's properties.

Namespace
Language: C#

Namespaces are used to group methods, classes, and other code into a package for use in many different files. The .NET framework comes with many (including the popular System.IO), and in order to certain classes within the framework (like File), use of the namespace must be declared.


< Previous Page   |   Next Page >