Zebra0.com
Glossary for C#: objects
Education Resources
Privacy
Contact
Topics
Algorithms
Alice 3
C++
C# Windows
RGB Colors
Computer Basics
Computer Concepts
Faculty resources
HTML5
Java
Systems Analysis and Design
Visual Basic
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