public static void Main(Strings[] args)
{
Point pt1=new Point(150,160);
Point pt2=(Point)pt1.Clone(); //This will return new new object
}
Thursday, June 18, 2009
Retrieve current user desktop path
c# .Net
string path = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
string path = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
Subscribe to:
Posts (Atom)