Category: C Sharp
C# (C sharp) programming language.
C# – Encapsulation
Encapsulation is the process of enclosing one or more items within a physical or logical package’. Encapsulation, in object oriented programming methodology, prevents access to…
C# – Structures
In C# , a structures is a value type data type. It helps you to make a single variable hold related data of various data…
C# – Polymorphism
It is said that a programmer goes through three stages when learning an object oriented programming language. e first phase is when a programmer uses…
C# – Abstraction
Abstract Classes and Methods Data abstraction is the process of hiding certain details and showing only essential information to the user. Abstraction can be achieved…
C# – Exception Handling
An exception is a problem that arises during the execution of a program. A C# exception is a response to an exceptional circumstance that arises…
C# – File I/O
A file is a collection of data stored in a disk with a specific name and a directory path. When a file is opened for…
C# – Delegates
Delegates Basic Delegates are references to methods. So far we have used references to objects , e.g . Stack st = new Stack ( );…
C# – Events
Events are certain actions that happen during the execution of a program that the applications wishes to be notified about , so it can respond….
C# – Attributes
An attribute is a declarative tag that is used to convey information to runtime about the behaviors of various elements like classes, methods, structures, enumerators, assemblies etc….
C# – Reflection
Reflection objects are used for obtaining type information at runtime. The classes that give access to the metadata of a running program are in the System.Reflectionnamespace. The System.Reflection namespace…