Author Archives: Vikram Singh

About Vikram Singh

hello everyone my name is vikram singh . I have study in Rajasthan university . I will providing all the detail of computer and its use . I will providing latest technology also.

delegates in c# programming

Delegates in c# programming-: A delegate is a type used to reference a method. This allows methods to be assigned to variables and passed as arguments. The delegate’s declaration specifies the method signature to which objects of the delegate type can refer. Delegates are by convention named with each word initially capitalized, followed by Delegate… Read More »

enum in c#

Enum in c# programming language-: An enumeration is a special kind of value type consisting of a list of named constants. To create one,we can use the enum keyword followed by a name and a code block containing a comma-separated list of constant elements. enum State { Run, Wait, Stop }; This enumeration type can be… Read More »

interface in c#

Interface in C# Language-: An interface defines a contract. A class or struct that implements an interface must adhere to its contract. An interface may inherit from multiple base interfaces, and a class or struct may implement multiple interfaces.   in other words we can say that the An interface is used to specify members that deriving… Read More »

arrays in c#

Arrays in c# programming language-:  An array is a data structure used for storing a collection of values that all have the same data type.An array is a data structure that contains a number of variables that are accessed through computed indices. The variables contained in an array, also called the elements of the array, are… Read More »

control statements in c#

Control Statements in C#-:  C# provides a variety of statements. Most of these statements will be familiar to developers who have programmed in C and C++. C# provide following statement-: 1     labeled-statement 2     declaration-statement 3      embedded-statement-: In the c# embedded statement has many types as like block empty-statement expression-statement selection-statement iteration-statement… Read More »

classes in c# programming

Class in C# Language-: A class is a data structure that may contain data members (constants and fields), function members (methods, properties, events, indexers, operators, instance constructors, destructors, and static constructors), and nested types. Class types support inheritance, a mechanism whereby a derived class can extend and specialize a base class. Class Declarations -:  A class declaration… Read More »

operators in c#

Operators in c# programming -:The operators of an expression indicate which operations to apply to the operands. Examples of operators include +, -, *, /, and new. Examples of operands include literals, fields, local variables, and expressions. In the c# programming language has three types operators Unary operators. -:The unary operators take one operand and use… Read More »

data type in c# language

Data Type In C# language -: C# programming language has two types. There are two kinds of types in C#: Value types-: Variables of value types directly contain their data, whereas variables of reference types store references to their data, the latter being known as objects Reference types.-: it is possible for two variables to reference… Read More »

programme structure in C#

Programme Structure In C# language-: Like any other language C# has a Programming structure.  C# are programs, namespaces, types, members, and assemblies. C# programs consist of one or more source files. these list.. Programme declare types-: It contain members and can be organized into namespaces. Classes and interfaces are examples of types. Fields  methods properties… Read More »