rohan123

Stories submitted by rohan123

OOPs Concepts and .NET Part 1: Classes, Objects, and Structures(c-sharpcorner.com)

submitted by rohan123rohan123(740) 2 years, 11 months ago

The following article kicks off a three-part article series that will present definitions and samples for different Object-Oriented Programming concepts and its implementation in .NET. The first part will examine the concepts of classes, objects, and structures. The second part will examine the concepts of inheritance, abstraction, and polymorphism. The third and last part will examine the concepts of interface, multiple interface inheritance, collections, and overloading. read more...

add a comment |category: |Views: 88

tags: another

Poorman's iPod MP3 Player in C# and .NET(c-sharpcorner.com)

submitted by rohan123rohan123(740) 2 years, 11 months ago

This article is an update to an article written by George Steeves on how to create an MP3 player using C# and .NET using the moon valley mp3p.ocx control. read more...

add a comment |category: |Views: 34

tags: another

Model View Presenter (MVP) design pattern and data binding(c-sharpcorner.com)

submitted by rohan123rohan123(740) 2 years, 11 months ago

Model View Presenter (MVP) design pattern is the evolution of the MVC design pattern and it’s aimed at providing a cleaner separation of concerns between the view, the model, and the controller improving the architecture (you can use several UI technologies without recompiling the business logic components) and testability of the enterprise solution. The pattern was originally developed at Taligent in the 1990s. In this article, I will explain the principles and how to use the MVP design pattern along with data binding with an example using C# language in Microsoft.NET. read more...

1 comment |category: |Views: 594

tags: another

Using the BackgroundWorker Component with composite user controls(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years ago

In this article you will learn how to use the BackgroundWorker Component with user controls in C#. read more...

add a comment |category: |Views: 17

tags: another

Formatting Currency in VB.NET(vbdotnetheaven.com)

submitted by rohan123rohan123(740) 3 years ago

This article shows us how to format a string provided to the function in standard US currency format following the standards of $1,000.00 without using the Visual Basic Namespace (i.e. VB6 or Visual Basic.dll). read more...

add a comment |category: |Views: 25

tags: another

Silverlight 2 Web Service Part I - The Beginning(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years ago

This tutorial is meant to shed some light upon how you can build you own Web Service using a WCF Service class. This is the first turtorial in a series of tutorials on how to access remote data with a Web Service. In this tutorial we start by simply returning a string from a Web Service method and displaying the value in the silverlight page, using a TextBlock, when the user clicks on a button. We also look at how you can dynamically use the current port alotted by Visual Studio in Debug mode without having to change he endpoint data in the configuration file. read more...

add a comment |category: |Views: 8

tags: another

Accessing Windows Forms Controls across Threads(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years ago

Many articles exist on the web regarding properly handling multiple application threads and accessing data across those threads, but this article will aim to remove much of the ambiguity or inacurate information found in many other articles. read more...

add a comment |category: |Views: 25

tags: another

Building your own Mail Client using C# (c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years, 1 month ago

This post will go with you step by step towards building your own Mail Client using C#. read more...

add a comment |category: |Views: 426

tags: another

Web Browser in C#(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years, 1 month ago

The attached project is a Web Browser application created in C# 2.0. read more...

1 comment |category: |Views: 586

tags: another

Communicating with Serial Port in C#(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years, 2 months ago

This article shows how to communicated with Serial Port using C#. read more...

add a comment |category: |Views: 34

tags: another

Secrets of Extension Methods: Part II(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years, 2 months ago

This article explains how Extension Methods are used in LINQ read more...

add a comment |category: |Views: 332

tags: another

Secrets of Extension Methods: Part I(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years, 2 months ago

This article gives an introduction to Extension Methods. read more...

add a comment |category: |Views: 411

tags: another

Introduction to Enterprise Library: Part II(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years, 2 months ago

This article explains about Attribute based validation in Validation Application Block. read more...

add a comment |category: |Views: 24

tags: another

Eight queens puzzle and its solution using C#.Net(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years, 2 months ago

In this article I am going to describe about Eight queens puzzle. and how to solve this puzzle. read more...

add a comment |category: |Views: 76

tags: another

Aspect Oriented Programming in C#.NET: Part II(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years, 2 months ago

This article is the continuation of the Part I. We will continue with the same problem of the Customer Sales application discussed in Part I. read more...

add a comment |category: |Views: 311

tags: another

Aspect Oriented Programming in C#.NET: Part I(c-sharpcorner.com)

submitted by rohan123rohan123(740) 3 years, 2 months ago

A lot has been written about AOP (Aspect Oriented Programming) on the Web, but none of the articles cover how to implement it practically in C#. This articles covers it practically using C#. read more...

add a comment |category: |Views: 594

tags: another