home / developersection / category
The C# language has omitted pointers as a data type. C#instead provides references and the ability to create objects that are managedby a garbage coll
GetType is the basis for usingreflection in .NET. It returns a Type object, describing the object it was calledon. It can then be used to extract type
Polymorphism is important features of object-oriented programming (OOP’s) and we can define itas "Polymorphism means one name multiple forms". Or we u
An indexer is worked as properties. Indexers allow instancesof a class or struct to be indexed just like arrays. Indexers are also calledsmart arrays
An event is delivered to an object by means of a call to amethod in that object. An event isdelegate type class member that is used by the object or
Regular expressions are used for searching and manipulating a large text. A regular expression check the following condition such asTo identify substr
StringBuilder class is the part of the C# string in the category of mutable string and it’s provide like a mutable strings (dynamically add the more c
Constructor is a special type of method that is use to initialize member variable of class, Constructor does not have any return type, Construtctor ha
Preprocessor directives are instruction or command. This is the simplymacro (The C preprocessor is a macro processor that is usedautomatically by the
This code is written in ComboBox KeyUp event as we have tocheck after every new character is typed.private void comboBox1_KeyUp(objectsender, KeyEvent
Identifiers are tokens or symbols which are uniquely identify the element. They are names of things like variables or fields. Identifiers are names gi
Handling of error occurring atRun-time is known as Exception handling. Exception handling is a way to preventapplication from crashing. C# provides t