This blog lists my code samples that I have posted on MSDN and Codeproject.com.
Here are my MSDN code samples:
- Derive a KeyedList<TKey, TValue> generic class - Last Updated 7/19/2012
- Interprocess Communication Using .NET 3.5 Named Pipes IO - 5/6/2012
- FTP Files to Server Using the WebClient Class - 6/28/2012
Here are my Codeproject Articles:
- Running Any Command Line exe Remotely - Posted 12/19/2011
- Export HTML Table Data to CSV File - Posted 1/30/2012
- Fast List<String> Sort in C# - Last Updated 7/18/2012
- Fast String Searching Using C++ STL Vectors in C# - Posted 8/19/2012
I hope you find these samples helpful.
hai dan,
ReplyDeleteim vinoth from india.
for the past few day's im learning piping concepts in c#. Your Named pipe code sample helped me a lot.
Can you help me with Anonymous piping. while googling i found lots of code snippet even from msdn. They r quite catchy but cant implement and helps to create a sample application. pls help me..
if you don't mine vinoth@pointelsolutions.com(samples)...:-)
Thanks for the reply. I haven't done anything with anonymous pipes. I don't really have the time to do anything more in this area. I did the named pipe project because I wanted to send string data from one app to another both running on the same system. It only took a few hours to develop the whole project. I'm sure you could switch it to use anonymous pipe without much trouble. Here is a link to Microsoft's howto for reference:
ReplyDeletehttp://msdn.microsoft.com/en-us/library/bb546102.aspx
I also suggest you search on stackoverflow.com for tips. This is where found some of the code for my Pipe Server class.