TOC

This article is currently in the process of being translated into Hindi (~41% done).

Getting started:

Introduction

इस C# ट्यूटोरियल में आपका स्वागत है। .NET Framework के परिचय के साथ, माइक्रोसॉफ्ट ने C# (उच्चारण सी शार्प) नामक एक नई भाषा शामिल की। C# को एक सरल, आधुनिक, सामान्य उद्देश्य, ऑब्जेक्ट उन्मुख प्रोग्रामिंग भाषा (Object Oriented Programming) एवं, कई अन्य भाषाओं से मुख्य अवधारणाओं को उधार लेने के लिए डिज़ाइन किया गया है, विशेष रूप से जावा।

C# could theoretically be compiled to machine code, but in real life, it's always used in combination with the .NET framework. Therefore, applications written in C#, requires the .NET framework to be installed on the computer running the application. While the .NET framework makes it possible to use a wide range of languages, C# is sometimes referred to as THE .NET language, perhaps because it was designed together with the framework.

C# is an Object Oriented language and does not offer global variables or functions. Everything is wrapped in classes, even simple types like int and string, which inherit from the System.Object class.

इस ट्यूटोरियल के अगले अध्यायों में, आप C# की सबसे ज़रूरी और अहम बातें सीखेंगे ।