Jul 24, 2003 #1 wyrd Well-known member Joined Aug 23, 2002 Messages 1,408 Location California Does .NET offer any methods that returns the GetTickCount API function value for me? Or am I going to have to import the function?
Does .NET offer any methods that returns the GetTickCount API function value for me? Or am I going to have to import the function?
Jul 24, 2003 #2 dynamic_sysop Well-known member Joined Oct 1, 2002 Messages 1,039 Location Ashby, Leicestershire. Code: MessageBox.Show(Environment.TickCount())
Jul 24, 2003 #3 wyrd Well-known member Joined Aug 23, 2002 Messages 1,408 Location California Aha! Thanks.