Learn how to Make Money Online doing freelancing, Affiliate Marketing, Blogging and many more ...
Go4Expert
Go4Expert RSS Feed

Go Back   Programming and SEO Forum >  Go4Expert > Articles / Source Code > Programming

Post New Thread  Submit New Article  Copy HTML to Clipboard  Copy BBCode to Clipboard  | More
Tutorials and Source Code in : C# Bookmarks Forum Tools Search this Forum
Announcement
Views: 17,887 View Announcement Announcement: Rules for Duplicate Article Submission
10-08-2008 shabbir (Go4Expert Founder)
  Rating Article / Author Last Post Reverse Sort Order Replies Views
 
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...
07-08-2010 01:50 PM
by shabbir Go to last post
10 70,994
Lightbulb
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 */
06-01-2010 01:54 PM
by unni krishnan.r Go to last post
9 29,761
Smile
Thread Rating: 2 votes, 4.50 average. 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...
05-28-2010 09:11 PM
by Mostapha Go to last post
7 29,615
Talking
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...
05-28-2010 02:24 PM
by satyedra pal Go to last post
3 2,957
 
Thread Rating: 1 votes, 5.00 average. 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
05-27-2010 02:31 PM
by satyedra pal Go to last post
9 5,049
Lightbulb
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...
05-23-2010 05:22 PM
by triathlon Go to last post
5 2,286
Question
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;
05-12-2010 03:36 PM
by lovepc Go to last post
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....
05-03-2010 11:57 AM
by satyedra pal Go to last post
4 114,810
Poll
Thread Rating: 1 votes, 5.00 average. 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
02-07-2010 07:28 PM
by seoasia Go to last post
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
02-06-2010 08:28 AM
by shabbir Go to last post
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...
01-18-2010 05:41 PM
by shabbir Go to last post
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
11-27-2009 02:15 PM
by sameer_havakajoka Go to last post
8 21,572
Arrow
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...
09-23-2009 09:00 PM
by fantascy Go to last post
2 8,738
Wink
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),...
09-19-2009 11:41 AM
by shabbir Go to last post
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...
08-21-2009 08:30 AM
by naimish Go to last post
3 6,064
Cool
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...
05-24-2009 03:10 PM
by varunjoshi Go to last post
1 23,714
Talking
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...
01-06-2009 11:24 AM
by shabbir Go to last post
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...
11-19-2008 03:26 AM
by aussiedude Go to last post
3 7,899
 
Thread Rating: 2 votes, 5.00 average. 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. ...
05-31-2008 02:50 AM
by alcheringa Go to last post
3 10,418
Exclamation
Thread Rating: 1 votes, 5.00 average. 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...
03-18-2008 05:35 PM
by shabbir Go to last post
5 5,122
Post New Thread  Submit New Article  Copy HTML to Clipboard  Copy BBCode to Clipboard  | More

Display Options Currently Active Users
Showing articles 1 to 20 of 40 4 (0 members & 4 guests)
 
Forum Tools Search this Forum
Search this Forum :

Advanced Search
Bookmarks

New comments New comments More than 15 replies or 150 views Hot articles with new comments
No new comments No new comments More than 15 replies or 150 views Hot article with no new comments
Closed Thread Article is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
 

All times are GMT +5.5. The time now is 05:27 AM.