---
title: "What are Objects ?"  
description: "What are Objects ?"  
author: "Shikhar Arora"  
published: 2019-11-06  
updated: 2019-11-06  
canonical: https://www.mindstick.com/forum/145447/what-are-objects  
category: "c#"  
tags: ["c#", ".net", "oops", "programming language"]  
reading_time: 1 minute  

---

# What are Objects ?

What are [Objects](https://www.mindstick.com/forum/23332/sort-arraylist-of-custom-objects-by-property) ?

## Replies

### Reply by Shikhar Arora

Objects are instances of classes. Objects are created for calling methods and using variables of that class.

```
namespace ConsoleApplication4
{
    class Program
    {
        static void Main(string[] args)
        {
            Program obj = new Program(); // Creating the object of Program Class.
        }
    }
}
```


---

Original Source: https://www.mindstick.com/forum/145447/what-are-objects

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
