C/C++/C#

TwitterFacebook
Get flash to fully experience Pearltrees
http://www.c-sharpcorner.com/ Premier community for C#, ASP.NET, Silverlight, WPF, Windows Phone, Windows Forms and .NET tutorials, articles, blogs, forums, news, and resources.

C#, Visual Studio 2008, Silverlight, ASP.NET, WPF, WCF, WF, and

Many Windows C++ programmers get confused over what bizarre data type identifiers like TCHAR and LPCTSTR are. Here, in brief, I will try to clear... QxOrm C++ library: Persistence (based on QtSql Qt library) - Serialization (based on boost::serialization library) - Reflection (introspection) The course is devoted to creation of 64-bit applications in C/C++ language and is intended for the Windows developers who use Visual Studio...

Your Development Resource - CodeProject

http://www.codeproject.com/

Datentypen in C#

http://www.aspheute.com/artikel/20000726.htm In diesem Artikel möchte ich Ihnen die Datentypen von C# (sprich "C sharp") erklären. Obwohl C# mit C++ verwandt ist, hat sich auch einiges in der Definition und in der Behandlung der Datentypen geändert. So einfach sich dieses Thema vielleicht auch anhören mag, Datentypen stellen unter anderem die Grundstruktur eines Programmes dar, und können bei falscher Implementation zu ärgerlichen Compilerfehlern führen. Anmerkung: Dadurch daß in C#, wie auch in C++, der Sourcecode in Englisch gehalten ist, werde ich die sprachspezifischen Befehle, Schlüsselwörter etc., unverändert lassen und gegebenfalls das deutsche Äquivalent verwenden; z.B. floating point- / Fließkomma-. Anmerkung zu "pointer-types": Diese Typen können nur im sogenannten Unsafe Code verwendet werden.

Asynchronous Socket Programming in C#: Part I — CodeGuru.com

http://www.codeguru.com/csharp/csharp/cs_misc/sampleprograms/article.php/c7695/Asynchronous-Socket-Programming-in-C-Part-I.htm Objective The objective of this article is to demonstrate a socket-based client/server application that will allow two-way asynchronous communication between a server and multiple client applications. Because this example uses asynchronous methods, the server application does not use threads to communicate to multiple clients (although internally the asynchronous communication mechanism uses threads at the OS level).
http://blogs.msdn.com/b/csharpfaq/archive/2004/03/17/91685.aspx

C# Frequently Asked Questions : How can I update my user interfa

I really can't say how many days i spent researching the threading topic, as i'm new to it. I actually never did the control updating without Invoke, but it seemed there was problems anyway, so question did i do 'right' when i chose to do this: Situation is i have the Update method of the worker class called from various places in that class, updating the stopwatch time elapsed (QueryPerformanceCounter) into the controls texbox.
class MyClient { public MyClient ( ) { this . connect ( ) ; } private void connect ( ) { //hier wird mit dem Server connected //dann musst du sagen, dass jetzt das Event ausgelöst werden soll if ( this . Event_OnServerConnnected != null ) //ist ein EventHandler zugewiesen? http://www.tutorials.de/net-windows-forms/245535-eigenes-event-erstellen.html

Eigenes Event erstellen - .NET Windows Forms @ tutorials.de: For

Machen Sie Ihre .NET-Anwendungen internetfähig. IP*Works! .NET Edition ist ein umfassendes Toolset mit allem, was Sie zum Schreiben von leistungsstarken Netzwerkanwendungen benötigen. Das Toolset enthält mehr als 42 Komponenten, mit denen Sie u. a. folgende Internet-Protokolle implementieren können: HTTP, FTP, SOAP, SMTP, POP, IMAP, SNMP, NNTP, XML, MIME, Telnet usw. Zusätzlich bietet dieses Toolset übergeordnete Komponenten, wie z. http://www.componentsource.com/bestsellers/net-compact-framework/visual-csharp-net/index-de.html

.NET Compact Framework / Visual C# .NET - Bestseller

Starting threads with parameters in C#

Please note: this page is now obsolete. It is now part of my larger article about threading . In the C# newsgroup, quite a few people have asked how parameters should be passed to new threads. In other words, if a new thread needs specific information in order to run (as it often does), how do you get that information to the thread? The ThreadStart delegate doesn't take any parameters, so the information has to be stored somewhere else. Typically, this means creating a new instance of a class, and using that instance to store the information. http://www.yoda.arachsys.com/csharp/threadstart.html