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.

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 »

C# Language Introduction

C# Language Introduction-:  C# (pronounced “See Sharp”) is a simple, modern, object-oriented, and type-safe programming language. C# has its roots in the C family of languages and will be immediately familiar to C, C++, and Java programmers. In other words we can say that the C# is a simple, modern, general-purpose, object-oriented programming language developed by Microsoft… Read More »

Features of ASP.NET MVC

Features of ASP.NET MVC-: ASP.NET MVC is an opinionated application development framework that prefers some functionality to be handled in a certain unique way. Let us discuss each of the features of ASP.NET MVC, along with the benefits they bring to the table. Convention over configuration-: This is a design methodology that significantly reduces the number of… Read More »