---
title: "What are Classes?"  
description: "What are Classes?"  
author: "Shikhar Arora"  
published: 2019-11-07  
updated: 2019-11-07  
canonical: https://www.mindstick.com/forum/145448/what-are-classes  
category: "c#"  
tags: ["c#", ".net", "oops", "programming language"]  
reading_time: 1 minute  

---

# What are Classes?

What are [Classes in C#](https://www.mindstick.com/forum/160401/describe-the-role-of-delegates-and-events-in-working-with-generic-methods-and-classes-in-c-sharp)?

## Replies

### Reply by Shikhar Arora

Classes are the blueprints of our project, it contains methods variables properties and objects which are relevant to it, without methods, variables properties and objects classes are useless.

```
namespace ConsoleApplication4
{
//Class declared

    class Program

    {

    }

}
```


---

Original Source: https://www.mindstick.com/forum/145448/what-are-classes

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
