A simple media player program in C# .NET 4.0
This is a program sample that you should go through at
the intermediate level of your knowledge about the .Net platform by Microsoft.
The entire program is written in C#, you may also use VB.NET if you are familiar
with it. The logic behind the program is same, just coding syntax will vary.
Well, all the best! let’s start with a quick glance at our objective :
i. We shall construct a media player.
ii....
Rss feed
Showing posts with label C#. Show all posts
Showing posts with label C#. Show all posts
Monday, 1 September 2014
Thursday, 24 July 2014

Exceptions in C#? example?
Error
Types:
Syntax
Error:-Compile type error is syntax error.
Exception
error:-Run time error is exception error.
Logical
error:-If you mistake in program as like not put the correct logic then show
error is called logical error.
“A logical error occurs
when an application compiles and runs...
Tags
# C#
Continue Reading
Wednesday, 23 July 2014

Delegate in C#
Contents
What is delegate?
How to declare delegate
by keyword?
Types of delegate?
Example program in use
delegate?
Output of the example
program?
“Delegate is a reference type method which holds the reference
method.”
“Delegates...
Tags
# C#
Continue Reading
Saturday, 19 July 2014

Abstract Class in C#?
“An abstract is implement that the class is incomplete and can’t be use directly, to use an abstract class other class can derived.”
“An abstract class contains abstract method which can be implemented by the…
v You can’t create instance of a abstract class.
v You can’t override the method of the abstract class in the base class.
v You can’t declare abstract...
Tags
# C#
Continue Reading
You Might Also Like
Developing Data-Centric Windows Applications using Java
Developing Data-Centric Windows Applications using Java Introduction The Core Java Programming and JDBC course provides an introd...