Rupesh Kahane, C# Corner

Rupesh Kahane

C# Corner

Pune, MH, India

Contact Rupesh

Discover and connect with journalists and influencers around the world, save time on email research, monitor the news, and more.

Start free trial

Recent:
  • Unknown
Past:
  • C# Corner

Past articles by Rupesh:

Enum In Typescript

In this article you will learn about Enum in Typescript. → Read More

Interface In Typescript

In this article you will learn about Interface in Typescript. → Read More

Array And Its Types In TypeScript

In this article, you will learn about Array & its types in TypeScript. → Read More

Getting Started With Angular 6

In this article, you will learn how to create a project in Angular 6, how to create components in Angular 6, and some more basics. → Read More

Creating Custom Pipe Using Safe HTML In Angular 5

A pipe takes in the data as input and transforms it into the desired output. Pipes are declared using @Pipe decorator. We will create a custom pipe here, in this article. Like a filter, a Pipe also takes data as input and transforms it into the desired output. → Read More

Create Components In Angular 5

In this article, we will learn what a component is and how to create components. → Read More

How To Use Joins, and Group By Clause In Entity Framework With LINQ C#

In this article will be going to learn How to use Joins, and Group By Clause in Entity Framework with Linq C# → Read More

Multiple Ways To Bind Data To Kendo Grid In MVC

In this article, we will learn how to bind data to Kendo Grid in MVC using multiple ways. → Read More

How To Implement CKEditor In ASP.NET MVC

In this article, will learn how to implement CKEditor in ASP.NET MVC. → Read More

Rock Your Technical Interview

In this article, you will understand how to rock your technical interview. → Read More

Kendo TreeList Moving A Node Up And Down In ASP.NET MVC Using JavaScript

In this article, you will learn Kendo TreeList, which moves a node up and down In ASP.NET MVC, using JavaScript. → Read More

ASP.NET MVC Ajax.BeginForm AjaxOptions OnSuccess, OnFailure

ASP.NET MVC Ajax.BeginForm AjaxOptions custom arguments for OnSuccess, OnFailure. → Read More

Validation Using Data Annotations In ASP.NET MVC 5

Introduction: In this article we will help fresher candidates to understand how to do perform validation using Data Annotation in ASP.NET MVC 5. Objective of this article * Reduce the use of regular expression in ASP.NET MVC project. * Build application with proper error messages in minimum code. Background In old web form to do validations, developerS use regular expression, to display error… → Read More

New Features And Advantages Of Angular 2.0

Advantages of Angular 2.0 * Browser Compatibilty: It supports IE 9, 10, 11, Firefox, Chrome, Safari, Android 4.1 & Microsoft Edge. * Cross platform: Developer can developer applications using Angular JS 2.O & can run on desktop, mobile, Android, iOS, etc. Ionic and NativeScript let you build hybrid and native UI mobile apps. NativeScript is an open source JavaScript framework that lets you build… → Read More

New Features And Advantages Of Angular 2.0

Advantages of Angular 2.0 * Browser Compatibilty: It supports IE 9, 10, 11, Firefox, Chrome, Safari, Android 4.1 & Microsoft Edge. * Cross platform: Developer can developer applications using Angular JS 2.O & can run on desktop, mobile, Android, iOS, etc. Ionic and NativeScript let you build hybrid and native UI mobile apps. NativeScript is an open source JavaScript framework that lets you build… → Read More

Basics Of Database With Real Life Example

Overview of Database A database is an organized collection of data. It is the collection of schemas, tables, queries, reports, views and other objects. SQL: * SQL stands for Structured Query Language. * SQL is a standard language for accessing and manipulating databases. * Used to Create, Transfer, Retrieve information from RDBMS. * RDBMS like MS SQL Server, MS Access, Oracle, MySQL, DB2, Sybase… → Read More

Data Types In C With Real Life Example

Data Types: * Data types are an important attribute of an identifier in any language because all operations are type checked by compiler for the compatibility. * Data type determines all the possible values that an identifier can have and valid operations that can be applied on it. Illegal operations will not compile by compiler. C language has the following categories: Primitive / Basic Data… → Read More

Execution Of C Or C++ Program With Real Life Example

Introduction: In this article we will discuss the execution of C or C++ program with real life example. The following diagram shows the execution process of C / C++ program execution: Preprocessor → Read More

Indexes In SQL Server With Real Life Example

Firstly, we will create a database & insert some dummy records into it. Then we will see, what are Indexes & how they work. Now select first two records & see the actual execution plan (you can see execution plan after running the query from menu option of SQL Server as Query => Display Estimated Execution Plan). Here we can see the total cost is like the following: Estimated Cost = Estimated… → Read More

Keywords In C# With Real Life Example

In this article we will discuss about keywords in C# with real life example, Keywords: * Keyword is a reserved word that has a particular meaning in any programming language. * Meaning of keyword is predefined. * We cannot use it as identifier. * If you want to use keywords as identifiers, you may prefix the keyword with @ character. * For more information visit. Real life example: * As everyone… → Read More