| 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. |
|
| C# Ping Utitility |
| C# Help |
|
|
| C# TELNET Client |
| C# Help |
| The telnet application makes use of Callback Function to recieve data from a socket in asyncronous mode. |
|
| Code Access Security from the perspective of the Developer and Administrator |
| The Code Project |
| Looking at Code Access Security From the Perspective of the Developer and Administrator |
|
| FileShare Client / Server |
| Master C# |
| I was on a look out for some concrete example on TCP Sockets. I found a very good example of a POP and SMTP server written by my friend Pramod Singh. I have used the logic from his example to build this example. Thank You Pramod !! This program is sort of a Peer to Peer application where there is transfer of files between two peers. |
|
| FTP Client Library in C# |
| C# Help |
|
|
| 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. |
|
| Ping Utility and Web Service |
| Egg Head Cafe |
| This article demonstrates how to build a Ping utility into a Web service. |
|
| Ping Utility in C# |
| C# Corner |
| Ping is a very useful utility used to determine the speed of a Network Connection. It establishes a socket connection with the given hostname and sends a Data Packet using ICMP Protocol. The Host then in reply send back a Packet. The time taken to Send and Receive a Data Packet is calculated in Milliseconds. This helps us to know the speed of the connection. |
|
| Ping v2 |
| Master C# |
| Ping is a very useful utility used to determine the speed of a Network Connection its also used in many other networking utilities. It sends a Data Packet using ICMP Protocol to the given Host. The Host then in reply sends back a Data Packet. The time taken to Send and Receive a Data Packet is calculated in Milliseconds. This helps us to know the speed of the connection. |
|
| 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. |
|
| Simple Port Sniffer in C# |
| C# Corner |
| This sample shows how to build a simple port sniffer in C#. |
|