| C# From a Java Developer's Perspective |
| http://www.25hoursaday.com/ |
| What follows is an overview of similarities and differences between the language features and libraries of the C# and Java programming languages based on my experience using both languages. All code snippets below were tested on Microsoft's .NET Framework Beta 2 for C# snippets and Javaâ„¢ 2, Standard Edition (J2SEâ„¢) version 1.4 Beta 2 for the Java snippets. |
|
| How to Change the IP Address of the Local Machine Using VB .NET |
| DotNetJunkies |
| In this article, Ben shows how to change the IP address of a local machine using Visual Basic .NET. This functionality is not provided in the Base Class Library and there is no Win32 API call to do this either, so this is a manual coding job! |
|
| How To Get IP Address Of A Machine |
| The Code Project |
| This article is not a technical overview or large discussion. It is like a collection of tips on how you can get the IP address or host name of a machine. In the Win32 API this could be accomplished using the NetWork API. And this is still true in the .NET framework. The only difference is finding and understanding what namespace and class to use to accomplish this task. In the .NET framework the NetWork API is available in the System.Net namespace. |
|
| Introduction to TCP client server in C# |
| The Code Project |
| This is a simple implementation of a TCP client server relationship. |
|
| IP Address Hostname Converter |
| C# Corner |
| This is an IP Address-Hostname converter written in C# using Windows Forms. You simply enter a hostname or IP address in the boxes on the form and press the arrow button to convert it. |
|
| IP LookUp Program |
| C# Corner |
| This is an IP look up program that uses C# Windows Forms and IPHostEntry to resolve the DNS request. You enter the URL in the first box and press the Look Up button and the IP shows in the bottom box. |
|
| IP Multicasting in C# |
| The Code Project |
| This document provides a simple client/server example for setting up a multicast application in C# .NET as a well as the method in which multicasting works and why it is useful now and how, with the increasing availability of bandwidth and the increased use of streaming media, will become a definitive method of data transmission in the near future. |
|
| Network Programming in C#-Part 1 |
| C# Corner |
| The .NET framework provides two namespaces, System.Net and System.Net.Sockets for network programming. The classes and methods of these namespaces help us to write programs, which can communicate across the network. The communication can be either connection oriented or connectionless. They can also be either stream oriented or data-gram based. |
|
| Networking Support Provided by the .NET Framework |
| C#Today |
| The .NET Framework provides a wide range of excellent features that developers can take advantage in building networking applications. The System.Net classes are similar to Microsoft's WinInet API (used for internet protocol programming), in that they allow applications to get and send data using Internet protocols. |
|
| Peer-to-Peer |
| C# Help |
| The P2P concept generally consists of a central Index server. This server does not contain any files, physically. It only maintains the information about the users who are logged on to the network, the IP address of the client and the list of files shared at any given moment by a user. The client and the server communicate with each other over a socket connection using simple commands. |
|
| Real Time TCP/IP using C# |
| The Code Project |
| The Real time Application is a sample that shows the communication techniques between a client (TcpClient) and a server (TcpServer) application using Socket class on each side. The project also demonstrates how to using listview control in the real time project. |
|
| Rich Custom Error Handling with ASP.NET |
| MSDN |
| Add your own custom error handling to your ASP.NET Web applications to ease debugging and improve customer satisfaction. |
|
| Simple NSLookUp Implementation in C# |
| C# Corner |
| This is code implementation for simple nslookup. As you can see from the code listing, I've used classes defined in the System.Net namespace. You must have to add reference to this namespace before you use any of this namespace classes. |
|
| SwitchNetConfig - Laptop users, quickly switch network and proxy configuration in different places |
| The Code Project |
| A handy utility for laptop users which stores network and proxy configuration as profiles and apply a profile very quickly whenever laptop goes to a different network |
|
| TabletPC 1.0 Advanced Remote Control |
| The Code Project |
| TabletPC turns your PocketPC into a tablet input device for your workstation or laptop. It can be used as a mouse or a keyboard. It has a friendly intuitive interface. |
|
| The Ultimate Socket Libraray |
| The Code Project |
| All what you need to know about sockets |
|
| The Ultimate Socket Library |
| The Code Project |
| All what you need to know about sockets |
|
| Top 10 tips and tricks to code professional looking .NET apps |
| The Code Project |
| Top 10 tips and tricks to make your little C# app look professional… things like interacting with Windows registry or Event log, ensuring a single instance of an app, sending emails, creating useful (and techie looking) logs of operations, getting IP addresses from host names and other cool stuff ! |
|
| Top 10 tips and tricks to code professional looking .NET apps |
| The Code Project |
| Top 10 tips and tricks to make your little C# app look professional… things like interacting with Windows registry or Event log, ensuring a single instance of an app, sending emails, creating useful (and techie looking) logs of operations, getting IP addresses from host names, and other cool stuff! |
|
| Who's Online Database Example |
| ASP Alliance |
| This article is in response to a question that was sent to the ASP Alliance article request database: "I have an application where everytime a user logs on a session is started. As an admin or even as a user view, I would like to be able to display all of the users (e.g. Session("usernames")) on a site status/activity page. Have you seen this before? Anyone know how or similar idea?"
|
|