|
|
Sanskruti
General Questions
1.Does C# support multiple-inheritance?
No. But you can use Interfaces.
2.Where is a protected class-level variable available?
It is available to any sub-class derived from base class
3.Are private class-level variables inherited?
Yes, but they are not...
|
|
10 |
70,994 |
|
 |
pradeep
Implementing Bubble Sort in C#
/*
** Simple class to sort an array in ascending order using bubble sort
** @author: Tanaz Kerawala
** @author: S Pradeep
** @date: 5/29/2007
*/
|
|
9 |
29,761 |
|
 |
Febian
Introduction
We use Winsock to establish connection between client and server . This is the beginning of everything in the computer of today's !!! The net is the most power tools of the programmers and you must learning to use it. In this article we will see how to create a simple chat...
|
|
7 |
29,615 |
|
 |
coderzone
Multithreading has been there in the world of computer programming for years. Although, almost all developers pretend to know what multithreading is, it looks like multithreading requires a little more attention when implementing in the real world. Of course, multithreading is easy to understand...
|
|
3 |
2,957 |
|
|
naimish
Encryption/Decryption file, string etc using C#
using System;
using System.Collections.Generic;
using System.Text;
using System.Security.Cryptography;
using System.IO;
namespace BHI.Rats
|
|
9 |
5,049 |
|
 |
coderzone
When it comes to Visual Studio .NET; .NET framework is the heart and soul of everything. We cannot possibly talk about .NET without properly understanding what it really means by .NET framework. Therefore, this guide is for those who have been wondering what .NET framework is.
.NET framework...
|
|
5 |
2,286 |
|
 |
shabbir
Introduction
The parser gives you a place to start to write an XML parser in C#. We have used the System.Xml.
The code
public void ParseFile(string strPath)
{
XmlTextReader xmlReader = new XmlTextReader(strPath);
int iTab = 0;
|
|
2 |
39,785 |
|
|
Sanskruti
Introduction
Windows Forms text boxes are used to get input from the user or to display text. The TextBox control is generally used for editable text, although it can also be made read-only. Text boxes can display multiple lines, wrap text to the size of the control, and add basic formatting....
|
|
4 |
114,810 |
|
 |
naimish
Introduction
This solution describes an approach how to send email messages with or without attachments.
Background
The EmailProgram class is used to send email messages with or without attachments.
The code
|
|
5 |
4,099 |
|
|
sameer_havakajoka
Introduction
How to capture the errors from application and write it in a log file. We have to mention the directory path in Webconfig file.
Background
This code is to capture the error log in log file with all information.
The code
|
|
2 |
2,005 |
|
|
JosipK
Introduction
AdWords is Google's flagship advertising product. AdWords offers pay-per-click (PPC) advertising, and site-targeted advertising for both text and banner ads.
The Google AdWords API lets developers build applications that interact directly with the AdWords platform. With these...
|
|
3 |
2,413 |
|
|
shabbir
To start with include namespaces
using System.Diagnostics; // For prcesss related information
using System.Runtime.InteropServices; // For DLL importing
Now declare these variables
private const int SW_HIDE = 0; Now declare win32 function ShowWindow
|
|
8 |
21,572 |
|
 |
Sanskruti
Introduction
C# is an object-oriented programming language developed by Microsoft Corporation . C# source code as well as those of other .NET languages is compiled into an intermediate byte code called Microsoft Intermediate Langauge. C# is primarily derived from the C, C++, and Java...
|
|
2 |
8,738 |
|
 |
filip
Introduction
The OpenDocument Format (ODF) is an XML-based file format for representing electronic documents such as spreadsheets, charts, presentations and word processing documents. The standard was developed by the OASIS (Organization for the Advancement of Structured Information Standards),...
|
|
3 |
3,024 |
|
|
Sanskruti
Introduction
Commenting in any programming langauge is important part of development because it helps understanding the code better and supplements when working as a part of the large team and so C# being a langauge of the modern era has some of the best support any project needs as far as the...
|
|
3 |
6,064 |
|
 |
shabbir
Delegate.Invoke
Delegate.Invoke is used to execute a delegate on the current thread. A delegate is just a reference to a function or method, and Delegate.Invoke is the mechanism to call this function or method (similar to a normal function call).
Delegate.BeginInvoke
Delegate.BeginInvoke...
|
|
1 |
23,714 |
|
 |
sanjitsil
Introduction
Before designing a class, we should have a very clear understanding about constructor. In this article I will discuss definition, types and features of constructor.
Definition
A constructor looks like a special method having no return type and its name is same with the class...
|
|
1 |
8,510 |
|
|
Sanskruti
Introduction
Exceptions are unforeseen errors that happen in your programs. Most of the time, you can, and should, detect and handle program errors in your code. For example, validating user input, checking for null objects, and verifying the values returned from methods are what you expect, are...
|
|
3 |
7,899 |
|
|
Sanskruti
If you go through any standard C# books you will see the constructors and so I would not get into the details of the constructors but what is more important to me is the use of static constructors which is somethine new in C# or you can say that its a copy of initiliazation block in Java.
...
|
|
3 |
10,418 |
|
 |
shabbir
Introduction
I happen to edit the collections many times in the foreach loop and run into problems and then each time I got a different solution when going to Google, So first I would try to list each of the solution and then discuss them so that we all can have the best practice in the...
|
|
5 |
5,122 |