C# Access Modifiers
Introduction C# Access Modifiers C# में access modifiers ऐसे keywords होते है जिनके द्वारा आप सभी custom types (class, …
Introduction C# Access Modifiers C# में access modifiers ऐसे keywords होते है जिनके द्वारा आप सभी custom types (class, …
Introduction to C# Anonymous Methods एक method को किसी दूसरे method में parameter के रूप में pass नहीं किया जा सकता है। …
Introduction to C# Arrays जैसा की आप जानते है array similar type (int, float, char) के elements का collection होता है। …
Introduction to C# Classes एक class एक framework होती है जिसके द्वारा आप अपना custom type define करते है। Class द्वारा …
Introduction to C# Collections Collections data structures होते है। आप C और C++ के साथ stack, queue आदि data structures …
Introduction to C# Constants ऐसी values या variables जो program में change नहीं किये जा सकते है constants कहलाते है। …
Introduction to C# Data Types जैसा की आपको पता है किसी भी program में data को store करने के लिए variables create किये …
Introduction to C# Delegates C# में delegate एक reference type होता है। एक delegate किसी विशेष signature (parameter list …
Introduction to C# Enumeration Type C# में enumeration type एक ऐसा type है जिसके द्वारा आप named constants का set define …
Introduction to C# Events C# में Events एक ऐसा feature है जिसके द्वारा एक class किसी दूसरी class को कोई ख़ास event (घटना) …
Introduction to C# Exception Handling C# में run time errors को exceptions के माध्यम से represent किया जाता है। यानी की …
Introduction to C# File I/O Program में file से input लेना और file में output store करना file I/O कहलाता है। यह एक बहुत …
Introduction to C# Generics Generics को C# language और CLR (Common Language Runtime) के version 2.0 में introduce किया …
Introduction to C# Indexers C# में indexers के द्वारा आप किसी class और structs के object को array की तरह use कर सकते है। …
Introduction to C# Inheritance Inheritance एक mechanism होता है जिसके द्वारा दो classes में child/parent relationship …
Introduction to C# Interfaces एक interface में methods, properties, indexers और events जैसी functionalities को define …
Introduction to C# LINQ (Language Integrated Query) LINQ एक Language Integrated Query mechanism है जिसे .NET framework …
Introduction LINQ Query Operators LINQ API data sources के साथ अलग अलग operations जैसे की filtering, sorting आदि perform …
LINQ के द्वारा जब in memory objects यानि की collections के लिए query perform की जाती है तो ऐसी queries LINQ to Objects …
C# आपको LINQ to SQL interface provide करती है जिसके द्वारा आप relational database पर SQL queries perform कर पाते है। इस …
LINQ to XML एक programming interface है जिसके द्वारा आप in memory XML documents पर LINQ queries perform कर सकते है।
Introduction to C# Main() Method किसी भी C# application में Main() method वह entry point होता है जँहा से program का …
Introduction to C# Member Overloading Polymorphism एक object oriented programming feature है। Polymorphism का अर्थ “एक …
Introduction to C# Methods एक method कई statements का set होता है जिसे एक unique नाम के द्वारा define किया जाता है। एक …
Introduction to C# Multithreading Multithreading ऐसी programming technique है जिसमें multiple threads का प्रयोग करते हुए …
Introduction to C# Namespaces Namespaces किसी बड़े project में classes और methods को आसानी से organize करने के लिए बहुत …
Introduction to C# Nullable Types कई बार आपको किसी variable को NULL value assign करने की आवश्यकता हो सकती है। लेकिन आप …
Introduction to C# Operator Overloading C# operators को user defined types जैसे की classes, structures आदि के साथ use …
Introduction to C# Operators किसी भी C# program का मुख्य उद्देश्य कोई operation perform करना होता है। Operations data के …
Introduction to C# Preprocessor Directives Preprocessor directives special commands होती है जो compiler को दी जाती है। …
Introduction to C# Properties C# में class member variables को fields कहा जाता है। जब आप कोई private field create करते …
Introduction to C# Reflection C# Reflection API आपको runtime के दौरान program elements को inspect और manipulate करने की …
Introduction to C# Reglar Expressions Regular expressions या Regex एक text pattern matching tool है। इस tool की सहायता …
Introduction to C# Statements एक program अलग अलग तरह के statements की sequence से बना होता है। कोई program क्या task …
Introduction to C# Strings एक string multiple characters की sequence होती है। उदाहरण के लिए INDIA एक string है। यह 5 …
Introduction to C# Structs C# में class की तरह structs भी blueprint ही होते है जिनके objects create किये जाते है। लेकिन …
Introduction to C# Thread Synchronization Thread Synchronization एक mechanism है जिसके द्वारा programmers यह सुनिश्चित …
Introduction to C# Type Conversion C# एक strongly typed language है। C# में किसी variable में value store करने से पूर्व …
Introduction to C# Unsafe Code C# में जो code memory को directly access करता है वह unsafe code कहा जाता है। Unsafe code …
Introduction to C# Variables किसी भी programming language में variables का प्रयोग उस data को store करने के लिए किया जाता …
Structure of a C# Program एक C# program कई elements (class, interface, delegate, namespace आदि) से मिलकर बना हो सकता है …
C# एक modern object oriented programming language है। ये Microsoft के द्वारा 1990 में बनायीं गयी थी। C# Anders Hejlsberg …