﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Article By </title><link>https://www.c-sharpcorner.com/articles/</link><description>Articles from C# Corner</description><copyright>© 1999 - 2026  CSharp Inc. All contents are copyright of their authors.</copyright><atom:link href="https://www.c-sharpcorner.com/rss/authorarticles.aspx?MemberUniqueName=rupesh-kahane2" rel="self" type="application/rss+xml" /><item><title>Getting Started With HTTP Client Get Request In Angular 8 Using Entity Framework</title><description>Learn Angular 8&amp;#39;s HTTP client for GET requests, integrating with Entity Framework for seamless data retrieval. Explore front-end development with RESTful services, asynchronous programming, and An</description><link>https://www.c-sharpcorner.com/article/rest-api-in-angular-8-httpclient-using-entity-framework/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/rest-api-in-angular-8-httpclient-using-entity-framework/</guid><pubDate>Wed, 29 Jan 2020 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Enum In Typescript</title><description>Enum in Typescript defines a set of named constants, either numeric or string-based. It simplifies code readability and maintenance by providing a distinct set of values. Types of enums include Numeri</description><link>https://www.c-sharpcorner.com/article/enum-in-typescript/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/enum-in-typescript/</guid><pubDate>Wed, 22 Jan 2020 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Interface In Typescript </title><description>In this article you will learn about Interface in Typescript.</description><link>https://www.c-sharpcorner.com/article/interface-in-typescript/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/interface-in-typescript/</guid><pubDate>Wed, 08 Jan 2020 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Basic Types - Any And Object In Typescript</title><description>In this article you will learn about Basic Types - Any And Object In Typescript.</description><link>https://www.c-sharpcorner.com/article/basic-types-any-and-object-in-typescript/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/basic-types-any-and-object-in-typescript/</guid><pubDate>Fri, 20 Dec 2019 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Array And Its Types In TypeScript</title><description>In this article, you will learn about Array &amp;amp; its types in TypeScript.</description><link>https://www.c-sharpcorner.com/article/array-its-types-in-typescript/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/array-its-types-in-typescript/</guid><pubDate>Fri, 29 Nov 2019 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>How To Create Services In Angular Using Model</title><description>In this article, we will learn what services are and how to create services into Angular using Model.</description><link>https://www.c-sharpcorner.com/article/how-to-create-services-in-angular-using-model/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/how-to-create-services-in-angular-using-model/</guid><pubDate>Mon, 04 Nov 2019 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Components, Router Outlet, Menus And Button Click Event In Angular 6 - Part Two</title><description>In this article, we are going to learn how to create components, display a component using router outlet, show a menu list on mouse over, &amp;amp; load component on button click event.</description><link>https://www.c-sharpcorner.com/article/components-menus-in-angular-6-part-two/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/components-menus-in-angular-6-part-two/</guid><pubDate>Fri, 05 Oct 2018 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Common Table Expressions (CTE) Example In SQL SERVER</title><description>A common table expression i.e CTE which is used to the specific temporary result set by using SELECT, INSERT, UPDATE, or DELETE statement. So the user can do further operations on it. When the user us</description><link>https://www.c-sharpcorner.com/article/common-table-expressionscte-example-in-sql-server2/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/common-table-expressionscte-example-in-sql-server2/</guid><pubDate>Thu, 27 Sep 2018 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Getting Started With Angular 6 - Part One</title><description>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.</description><link>https://www.c-sharpcorner.com/article/getting-started-with-angular-6-part-one/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/getting-started-with-angular-6-part-one/</guid><pubDate>Thu, 20 Sep 2018 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Bulk Insert, Update XML Data Into SQL Table</title><description>In this article, I have created a sample XML format. Using nodes() method to shred XML into multiple rows, which propagates parts of XML documents into row sets. </description><link>https://www.c-sharpcorner.com/article/bulk-insert-update-xml-data-into-sql-table/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/bulk-insert-update-xml-data-into-sql-table/</guid><pubDate>Wed, 12 Sep 2018 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Creating Custom Pipe Using Safe HTML In Angular 5</title><description>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 ta</description><link>https://www.c-sharpcorner.com/article/creating-custom-pipe-using-safehtml-in-angular-5/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/creating-custom-pipe-using-safehtml-in-angular-5/</guid><pubDate>Wed, 04 Apr 2018 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Create Components In Angular 5</title><description>In this article, we will learn what a component is and how to create components.</description><link>https://www.c-sharpcorner.com/article/creating-components-in-angular-5/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/creating-components-in-angular-5/</guid><pubDate>Fri, 30 Mar 2018 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Getting Started With Angular 5</title><description>In this article we will learn project folder structure of Angular 5 and how to set up your first Angular application </description><link>https://www.c-sharpcorner.com/article/getting-started-with-angular-5/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/getting-started-with-angular-5/</guid><pubDate>Fri, 23 Mar 2018 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Bind Menu And Sub Menu Dynamically In ASP.NET MVC From Database Using LINQ</title><description>Many times we need to create a menu for a simple application. We ususally get stuck on how to bind the menu. Here in this article we you will learn how to bind menu and sub menu dynamically in ASP.NET</description><link>https://www.c-sharpcorner.com/article/bind-menu-and-sub-menu-dynamically-in-mvc-from-database-using-linq/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/bind-menu-and-sub-menu-dynamically-in-mvc-from-database-using-linq/</guid><pubDate>Thu, 11 Jan 2018 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title> How To Use Joins, and Group By Clause In Entity Framework With LINQ C#</title><description>In this article will be going to learn How to use Joins, and Group By Clause in Entity Framework with Linq C#</description><link>https://www.c-sharpcorner.com/article/how-to-use-joins-group-by-clause-in-entity-framework-with-linq-c-sharp/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/how-to-use-joins-group-by-clause-in-entity-framework-with-linq-c-sharp/</guid><pubDate>Thu, 13 Jul 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Multiple Ways To Bind Data To Kendo Grid In MVC</title><description>Discover various methods to bind data to Kendo Grid in MVC. From server-side binding with IQueryable to client-side binding via AJAX and JSON, explore options like DataSource, ViewData, or ViewModel f</description><link>https://www.c-sharpcorner.com/article/multiple-ways-to-bind-data-to-kendo-grid-in-mvc/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/multiple-ways-to-bind-data-to-kendo-grid-in-mvc/</guid><pubDate>Sat, 24 Jun 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>How To Implement CKEditor In ASP.NET MVC</title><description>CKEditor is a powerful, browser-based WYSIWYG editor that simplifies HTML content creation. It integrates seamlessly with ASP.NET MVC, allowing users to easily create and manage rich text content. </description><link>https://www.c-sharpcorner.com/article/how-to-implement-ckeditor-in-mvc/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/how-to-implement-ckeditor-in-mvc/</guid><pubDate>Sun, 21 May 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>How To Prepare Your Presentation</title><description>How To Prepare Your Presentation.</description><link>https://www.c-sharpcorner.com/blogs/how-to-prepare-your-presentation</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/how-to-prepare-your-presentation</guid><pubDate>Tue, 18 Apr 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Rock Your Technical Interview </title><description>In this article, you will understand how to rock your technical interview.</description><link>https://www.c-sharpcorner.com/article/rock-your-technical-interview/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/rock-your-technical-interview/</guid><pubDate>Wed, 12 Apr 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Kendo TreeList Moving A Node Up And Down In ASP.NET MVC Using JavaScript</title><description>In this article, you will learn Kendo TreeList, which moves a node up and down In ASP.NET MVC, using JavaScript.</description><link>https://www.c-sharpcorner.com/article/kendo-treelist-moving-a-node-up-and-down-in-asp-net-mvc-using-javascript/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/kendo-treelist-moving-a-node-up-and-down-in-asp-net-mvc-using-javascript/</guid><pubDate>Tue, 28 Mar 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Allow Only Single Checkbox To Be Checked At A Time In Kendo MVC</title><description>This article imparts knowledge on how to allow only single checkbox to be checked at a time in Kendo MVC.</description><link>https://www.c-sharpcorner.com/article/allow-only-single-checkbox-to-be-checked-at-a-time-in-kendo-mvc/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/allow-only-single-checkbox-to-be-checked-at-a-time-in-kendo-mvc/</guid><pubDate>Sat, 25 Mar 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>How To Set Default In ASP.NET MVC</title><description>In this blog, you will learn how to set default in ASP.NET MVC.</description><link>https://www.c-sharpcorner.com/blogs/how-to-set-default-in-asp-net-mvc</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/how-to-set-default-in-asp-net-mvc</guid><pubDate>Sat, 04 Mar 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>ASP.NET MVC Ajax.BeginForm AjaxOptions OnSuccess, OnFailure</title><description>ASP.NET MVC Ajax.BeginForm AjaxOptions custom arguments for OnSuccess, OnFailure.</description><link>https://www.c-sharpcorner.com/article/asp-net-mvc-5-ajax-beginform-ajaxoptions-onsuccess-onfailure/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/asp-net-mvc-5-ajax-beginform-ajaxoptions-onsuccess-onfailure/</guid><pubDate>Mon, 20 Feb 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Master Details View Using Telerik Grid For ASP.NET MVC</title><description>In this article, you will learn about Master Details View using Telerik Grid for ASP.NET MVC.</description><link>https://www.c-sharpcorner.com/article/master-details-view-using-telerik-grid-for-asp-net-mvc/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/master-details-view-using-telerik-grid-for-asp-net-mvc/</guid><pubDate>Fri, 10 Feb 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Get Data From Multiple Tables Using Parameters While Combining LINQ Expressions</title><description>In this article, you will learn how to get data from mutliple tables using parameters when combining LINQ expressions in ASP.NET MVC 5.</description><link>https://www.c-sharpcorner.com/article/get-data-from-multiple-tables-using-parameters-while-combining-linq-expressions/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/get-data-from-multiple-tables-using-parameters-while-combining-linq-expressions/</guid><pubDate>Mon, 09 Jan 2017 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>How To Insert Data Into Kendo Grid MVC From Input Control</title><description>In this blog, you will learn how to Insert data into Kendo Grid MVC from Input Control.</description><link>https://www.c-sharpcorner.com/blogs/how-to-insert-data-into-kendo-grid-mvc-from-input-control</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/how-to-insert-data-into-kendo-grid-mvc-from-input-control</guid><pubDate>Thu, 29 Dec 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Consume WCF Services In Xamarin Android App</title><description>In this article, you will learn how to consume WCF Services in Xamarin Android app.</description><link>https://www.c-sharpcorner.com/article/consume-wcf-services-in-xamarin-android-app/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/consume-wcf-services-in-xamarin-android-app/</guid><pubDate>Fri, 02 Dec 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Persistent Storage In Xamarin Android App Using Shared Preferences</title><description>In this article, we will cover how to persist values in Xamarin Android app, using Shared Preferences.</description><link>https://www.c-sharpcorner.com/article/persistent-storage-in-xamarin-android-app-using-shared-preferences/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/persistent-storage-in-xamarin-android-app-using-shared-preferences/</guid><pubDate>Wed, 30 Nov 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Capture User Input In Xamarin Android App And Validate It</title><description>In this article, we will cover how to capture the user input in Xamarin Android app and validate it.</description><link>https://www.c-sharpcorner.com/article/capture-user-input-in-xamarin-android-app-and-validate-it/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/capture-user-input-in-xamarin-android-app-and-validate-it/</guid><pubDate>Thu, 24 Nov 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Dynamically Bind The DropDownList On Change Event In ASP.NET MVC 5</title><description>In this article, we will cover how to dynamically bind the dropdownlist on change event in ASP.NET MVC 5.</description><link>https://www.c-sharpcorner.com/article/dynamically-bind-the-dropdownlist-on-change-event-in-asp-net-mvc-5/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/dynamically-bind-the-dropdownlist-on-change-event-in-asp-net-mvc-5/</guid><pubDate>Thu, 29 Sep 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>CRUD Operation Using Repository Unit Of Work Pattern</title><description>Create an ASP.NET MVC project in Visual Studio 2013, add a class library, and set up a SQL Server database. Implement Entity Framework with an EDMX model, then use the Repository pattern for CRUD oper</description><link>https://www.c-sharpcorner.com/article/crud-operation-using-repository-unit-of-work-pattern/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/crud-operation-using-repository-unit-of-work-pattern/</guid><pubDate>Sun, 25 Sep 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Operators In AngularJS</title><description>In this blog, you will learn about the operators in AngularJS.</description><link>https://www.c-sharpcorner.com/blogs/operators-in-angularjs</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/operators-in-angularjs</guid><pubDate>Mon, 12 Sep 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Date Time Formats Used in C# MVC</title><description>In this article, we will learn Date Time formats, used in C# MVC.</description><link>https://www.c-sharpcorner.com/article/date-time-formats-used-in-c-sharp-mvc/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/date-time-formats-used-in-c-sharp-mvc/</guid><pubDate>Fri, 05 Aug 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Different JSON Result Types Used In MVC</title><description>In this article, we will learn different JSON result types, using MVC.</description><link>https://www.c-sharpcorner.com/article/different-json-result-types-used-in-mvc/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/different-json-result-types-used-in-mvc/</guid><pubDate>Tue, 02 Aug 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Introduction To Kendo UI And Open Modal Popup Using Kenod UI MVC 5</title><description>In this article, you will learn about Kendo UI and open modal popup, using Kendo UI MVC 5.</description><link>https://www.c-sharpcorner.com/article/introduction-to-kendo-ui-and-open-modal-popup-using-kenod-ui-mvc-5/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/article/introduction-to-kendo-ui-and-open-modal-popup-using-kenod-ui-mvc-5/</guid><pubDate>Sat, 16 Jul 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Keynote of C# Corner Conference 2016</title><description>In this article we will learn about the keynote talks given by speakers at the C# Corner Conference 2016.</description><link>https://www.c-sharpcorner.com/blogs/keynote-of-c-sharpcorner-conference-2016</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/keynote-of-c-sharpcorner-conference-2016</guid><pubDate>Thu, 24 Mar 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Introduction to Knockout.JS - Part Four</title><description>In this article we are going to understand the control flow statements in Knockout.js. This is part four of the series.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/introduction-to-knockout-js-part-four/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/introduction-to-knockout-js-part-four/</guid><pubDate>Sun, 14 Feb 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Introduction to Knockout.js - Part Three</title><description>In this article we are going to understand the basics of Knockout.js. This is part 3 of the series.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/introduction-to-knockout-js-part-three/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/introduction-to-knockout-js-part-three/</guid><pubDate>Mon, 08 Feb 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Introduction To Knockout.js - Part Two</title><description>In this part, we are going to understand binding &amp;amp; MVVM in Knockout.js.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/introduction-to-knockout-js-part-2/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/introduction-to-knockout-js-part-2/</guid><pubDate>Fri, 05 Feb 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Introduction To KnockOut.Js - Part 1</title><description>In this article we are going to understand the basics of Knockout.js.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/introduction-to-knockout-js-part-1/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/introduction-to-knockout-js-part-1/</guid><pubDate>Wed, 03 Feb 2016 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Best Practices, Coding Standards &amp;amp; Folder Structure For ASP.NET MVC Project</title><description>In this article we will help fresher candidates to understand how to create our .NET MVC project from scratch with use of MVC, Generic Repository and Unit of Work pattern and Entity Framework.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/best-practices-coding-standards-folder-structure-for-asp/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/best-practices-coding-standards-folder-structure-for-asp/</guid><pubDate>Wed, 30 Dec 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Validation Using Data Annotations In ASP.NET MVC 5</title><description>In this article you will learn about validation using Data Annotations in ASP.NET MVC 5.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/validation-using-data-annotations-in-Asp-Net-mvc-5/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/validation-using-data-annotations-in-Asp-Net-mvc-5/</guid><pubDate>Tue, 29 Dec 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>New Features And Advantages Of Angular 2.0</title><description>In this article you will learn about new features &amp;amp; advantages of Angular 2.0.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/new-features-advantages-of-angular-2-o/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/new-features-advantages-of-angular-2-o/</guid><pubDate>Mon, 28 Dec 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Basics Of Database With Real Life Example</title><description>The basics of databases refer to fundamental concepts and principles that underpin the design, organization, and management of data in computer systems. Databases are essential components in modern co</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/basics-of-database-with-real-life-example/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/basics-of-database-with-real-life-example/</guid><pubDate>Thu, 03 Dec 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Data Types In C With Real Life Example</title><description>In this article we will discuss about Data Types in C with real life example.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/data-types-in-c-with-real-life-example/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/data-types-in-c-with-real-life-example/</guid><pubDate>Thu, 26 Nov 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Indexes In SQL Server With Real Life Example</title><description>In this article we will discuss about Indexes in SQL Server with real life example.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/indexes-in-sql-server-with-real-life-example/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/indexes-in-sql-server-with-real-life-example/</guid><pubDate>Tue, 17 Nov 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Keywords In C# With Real Life Example</title><description>In this article we will discuss about Keywords in C# with real life example.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/keywords-in-C-Sharp-with-real-life-example/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/keywords-in-C-Sharp-with-real-life-example/</guid><pubDate>Sat, 14 Nov 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Variables &amp;amp; Constant In C With Real Life Example</title><description>In this article we will discuss about Variables &amp;amp; Constants in C with real life example.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/variables-constant-in-c-with-real-life-example288/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/variables-constant-in-c-with-real-life-example288/</guid><pubDate>Wed, 11 Nov 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Execution Of C Or C++ Program With Real Life Example</title><description>In this article we will discuss the execution of C or C++ program with real life example.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/execution-of-c-or-cpp-program-with-real-life-example/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/execution-of-c-or-cpp-program-with-real-life-example/</guid><pubDate>Wed, 11 Nov 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Send Event Invitation Emails Using MVC 5 With Code First Approach</title><description>In this article we will discuss how to send Event Invitation emails using MVC 5 with code first approach.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/send-event-invitation-emails-using-mvc-5-with-code-first-app/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/send-event-invitation-emails-using-mvc-5-with-code-first-app/</guid><pubDate>Sat, 07 Nov 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Polymorphism In C# With Real Life Example</title><description>In this article we will discuss Polymorphism in C# with a real life example.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/polymorphism-in-C-Sharp-with-real-life-example/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/polymorphism-in-C-Sharp-with-real-life-example/</guid><pubDate>Sat, 07 Nov 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>HTTP Message Format In ASP.NET </title><description>In this article you will learn about HTTP Message Format in ASP.NET.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/http-message-format-in-Asp-Net-5/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/http-message-format-in-Asp-Net-5/</guid><pubDate>Tue, 03 Nov 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Real Life Example Of ASP.NET MVC 5</title><description>In this article we will discuss some basics &amp;amp; real life examples of MVC 5.
</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/real-life-example-of-Asp-Net-mvc-5/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/real-life-example-of-Asp-Net-mvc-5/</guid><pubDate>Mon, 02 Nov 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Enum in C# Programming</title><description>In this blog, we will discuss Enum in C# .NET &amp; some Rules for Enum.</description><link>https://www.c-sharpcorner.com/blogs/enum-in-c-sharp-programming1</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/enum-in-c-sharp-programming1</guid><pubDate>Tue, 27 Oct 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Arrays Using MVC 5 And Its Types Till 4 Dimensional Array</title><description>In this article we will discuss about arrays using MVC 5. Types of array with diagrammatically representation &amp; explanation is explained here.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/array-using-mvc-5/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/array-using-mvc-5/</guid><pubDate>Fri, 23 Oct 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Arrays In C#</title><description>This article discusses array programming in C# and .NET. Here we can understand how to get address of each element in an array.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/array-in-C-Sharp/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/array-in-C-Sharp/</guid><pubDate>Thu, 22 Oct 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Interview Questions MNC Companies in ASP.NET , C# and SQL</title><description>In this blog, we will see the most basic interview questions of some MNC companies.</description><link>https://www.c-sharpcorner.com/blogs/interview-questions-mnc-companies-in-asp-net-c-sharp-and-sql1</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/interview-questions-mnc-companies-in-asp-net-c-sharp-and-sql1</guid><pubDate>Tue, 20 Oct 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Find File Type From Magic Number Of File In MVC 5</title><description>Explore how to implement file type detection using magic numbers in MVC 5. Learn about analyzing file headers, determining mime types, and integrating this functionality into your web development proj</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/how-to-find-file-type-from-magic-number-of-file-in-mvc/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/how-to-find-file-type-from-magic-number-of-file-in-mvc/</guid><pubDate>Sun, 18 Oct 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Real Life Example Of OOPS</title><description>In this article we are going to explain a real life example of Object Oriented Programming (OOPS). This question is frequently asked in interviews.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/real-life-example-of-oops/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/real-life-example-of-oops/</guid><pubDate>Fri, 16 Oct 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>C# Program Compilation Steps </title><description>In this article we are going to understand C# Program compilation Steps &amp; contains of .EXE file.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/C-Sharp-program-compliation-steps/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/C-Sharp-program-compliation-steps/</guid><pubDate>Mon, 12 Oct 2015 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Cursors in Oracle</title><description>This article explains Cursors with their types with some examples that will help beginners.</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/cursor-in-oracle/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/cursor-in-oracle/</guid><pubDate>Mon, 29 Sep 2014 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>PL/SQL Control Statements in Oracle</title><description>PL/SQL control statements are used to manage the flow of execution in Oracle&amp;#39;s PL/SQL programming language. They enable developers to make decisions, iterate through data, and perform specific act</description><link>https://www.c-sharpcorner.com/UploadFile/a8024d/plsql-control-statements-in-oracle/</link><guid isPermaLink="true">https://www.c-sharpcorner.com/UploadFile/a8024d/plsql-control-statements-in-oracle/</guid><pubDate>Sat, 27 Sep 2014 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>OLAP Features in SQL Server</title><description>This blog explains OLAP feature in SQL Server.</description><link>https://www.c-sharpcorner.com/blogs/olap-features-in-sql-server1</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/olap-features-in-sql-server1</guid><pubDate>Wed, 25 Jun 2014 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Information about the Indexes on a Table</title><description>This blog describes indexes on Table by using sp_helpindex.</description><link>https://www.c-sharpcorner.com/blogs/information-about-the-indexes-on-a-table1</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/information-about-the-indexes-on-a-table1</guid><pubDate>Tue, 24 Jun 2014 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>ASCII Character in SQL Server</title><description>This blog defines ASCII in SQL Server.</description><link>https://www.c-sharpcorner.com/blogs/ascii-character-in-sql-server1</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/ascii-character-in-sql-server1</guid><pubDate>Mon, 23 Jun 2014 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Real Life Examples of Object Oriented Programming</title><description>In this blog I will explain real life examples of object oriented programming.</description><link>https://www.c-sharpcorner.com/blogs/real-life-examples-of-object-oriented-programming1</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/real-life-examples-of-object-oriented-programming1</guid><pubDate>Tue, 03 Jun 2014 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item><item><title>Introduction to Data</title><description>This blog explains the introduction to Data.</description><link>https://www.c-sharpcorner.com/blogs/introduction-to-data1</link><guid isPermaLink="true">https://www.c-sharpcorner.com/blogs/introduction-to-data1</guid><pubDate>Mon, 19 May 2014 00:00:00 GMT</pubDate><author>noreply@c-sharpcorner.com (Rupesh Kahane)</author></item></channel></rss>