Zebra0.com

csharpGlossary for C#: objects

Glossary for C#: objects

Learn C# (C sharp) in FREE step-by-step lessons.

class: A class can be described as the blueprint or template for creating an instance of the class. A class defines both data (properties) and events (procedures or functions). An instance of the class is called an object. (Lesson: Object oriented programming in C#)
class example accessors mutators: Fraction Class with Accessors, Mutators, and < (Lesson: Object oriented programming in C#)
class example employee: An Employee Class derived from the Person Class (Inheritance).(Lesson: Object oriented programming in C#)
class example fractions: Fraction Class with variables and constructors(Lesson: Object oriented programming in C#)
class example person: A Person Class.(Lesson: Object oriented programming in C#)
datetime class: Working with the DateTime class.(Lesson: Object oriented programming in C#)
object: A class can be described as the blueprint or template for creating an instance of the class. A class defines both data (properties) and events (procedures or functions). An instance of the class is called an object. (Lesson: Object oriented programming in C#)
objects class vs struct: Microsoft Reference: Classes vs. Structs(Lesson: Object oriented programming in C#)
   A class can be described as the blueprint or template for creating an instance of the class. An instance of the class is called an object. An object combines both data (properties) and events (procedures).
Full Glossary