Thursday, March 28, 2024 12:27

Posts Tagged ‘object variable type’

Object oriented programming

Saturday, April 22nd, 2017

Object oriented programming (OOP) is a programming paradigm, which uses objects and their interactions for building computer programs.

Through this concept, programming tries to simulate the real world. In real world, we can have objects like a car, an orange, a dog.… Read more

Object variable type

Thursday, December 29th, 2016

Object variable type is a special type, the parent of all other types in the .NET Framework. It can accept values from any other type in C#, and we declare it using the word object

In the following example you can see how we can assign any type to an object variable type:

Read more

Follow the white rabbit