 
                
                                Topic Name
                                Introduction to C#
                                Environment Setup
                                C# Keywords
                                Contextual Keywords
                                C# Namespaces
                                What Is Class?
                                What is Object?
                                Data Types
                                Nullable Types
                                C# Variables
                                What are Access Modifiers?
                                What is Property?
                                What is Indexer?
                                Hello world Program
                                What is Type conversion?
                                What is if else condition?
                                What is Array?
                                What is Jagged Array?
                                What is ArrayList?
                                What is List?
                                What is string and StringBuilder?
                                What is for loop?
                                What is foreach loop?
                                What is switch?
                                What is Method?
                                What is method overloading?
                                What is Constructor?
                                What is constructor overloading?
                                What is Boxing and Unboxing?
                                What is delegate in C# and uses of delegates?
                                What is Inheritance?
                                What are Value types and Reference types?
                                What is Exception Handling?
                                What is struct?
                                What is Dictionary?
                                What is Hashtable?
                                What is interface?
                                What is Abstraction?
                                What is Polymorphism?
                                What is Enums?
                                What is Sealed Class?
                                What is Partial Class?
                                Extension Methods?
                                What is static?
                                What is Encapsulation?
                                Difference between Equality Operator (==) and Equals() Method in C# ?
                                What is IEnumerable?
                                What is Serializing?
                                What is LINQ?
                                Differences between IEnumerable and IQueryable?
                                What is Multithreading?
                                What is File Handling?
                                What is late binding and early binding?
                                What is Singleton Design Patterns?
                    
                
Property look like a variable but it has some special features like (get set) accessor. This accessor responsible to value get and set access permission. Some time it’s called auto implemented property of the C#. This property contains the class. Given bellow the example and explain of the code:
internal class Students
    {
        public int ID { get; set; }
        public string Name { get; set; }
        public int AccountId { get; set; }
        public string Email { get; set; }
    }
In the Students class contain the four-property name as ID, Name, AccountId, Email. Every property has get and set access modifier.
 
                                     
                                         
                                                 
                                                         
                                                 
                                                 
                                                 
                                                