C#
C# Examples
How to find the temporary directory in C#
Submitted by softking on Mon, 06/30/2008 - 20:59In order to find the temporary folder in C# you have to use this code:
System.IO.Path.GetTempPath();How to duplicate a screen to a second screen in C#
Submitted by softking on Thu, 06/19/2008 - 09:27I had the need to have a small program that displays all that i can see on my main screen in the secondary screen that is attached to my computer
How to sort items in a list in C#
Submitted by softking on Mon, 06/16/2008 - 18:34Sorting lists in C# with support of the interface IComparable
for example we have objects from the class TestItem in a list
public class TestItem
{
private int sortByMe;
}
How to capture screen images and send it to a secondary screen
Submitted by softologi on Sun, 06/08/2008 - 01:55How to capture screen images and send it to a secondary screen
