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 »

asp.net core

Asp.Net Core Introduction -:  ASP.NET Core is the latest evolution of Microsoft’s popular ASP.NET web framework, released in June 2016. Recent versions of ASP.NET have seen many incremental updates, focusing on high developer productivity and prioritisation backwards compatibility. ASP.NET Core bucks that trend by making significant architectural changes that rethink the way the web framework is… Read More »

.NET Core vs .NET Framework

.NET Core vs .NET Framework-: Although .NET Core and the full .NET framework share many common components, there are fundamental differences between the two, and choosing between them depends on the scenario at hand. When there is a need for the application to run cross-platform or have an architecture based on micro services, to promote high… Read More »

ASP.NET Development Stack

ASP.NET Development Stack-: We build the pages that form the application, implement its user’s requirements, and then fine-tune the surrounding run-time environment to make it serve pages effectively and securely.  The development of an ASP.NET application passes through two phases page authoring and run-time configuration. There are many various logical layers are available in development stack. These are… Read More »

ASP.NET Programming Model

ASP.NET Programming Model-: ASP.NET is a Web development platform that provides services, a programming model, and the software infrastructure necessary to build enterprise-class applications. As part of the Microsoft .NET platform, ASP.NET provides a component-based, largely extensible, and easy-to-use way to build, deploy, and run Web applications that target any browser or mobile device. In the… Read More »

introduction of .net framework

What is .net framework-: The Microsoft .NET Framework is a component of Microsoft Operating system. It is a software framework which is designed and developed by Microsoft. The first version of .Net framework was 1.0 which came in the year 2002. In other words we can say that is a virtual machine for compiling and… Read More »

cursor in sql

cursor in sql-: Cursor are used to process a collection of row computed by an embedded sql statement in host language programme.It can be thought of as a pointer that point to a single row from the result of a query that retrieves multiple rows. In other words we can say that A cursor is a… Read More »