Environment.TickCount : Environment « Development « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Development » Environment 
7.3.3.Environment.TickCount
Option Strict On

Public Module TimerFunction
   Public Sub Main()
      Dim starttime, endtime As Integer
      starttime = Environment.TickCount
      For ctr As Integer = to 10000000

      Next
      endtime = Environment.TickCount
      Console.WriteLine("Elapsed time is {0} milliseconds", endtime - starttime)
   End Sub
End Module
Elapsed time is 16 milliseconds
7.3.Environment
7.3.1.Environment: MachineName, SystemDirectory, GetLogicalDrives, Version
7.3.2.Get the command line arguments using the Environment class
7.3.3.Environment.TickCount
7.3.4.Environment.OSVersion
7.3.5.Environment.UserName
7.3.6.Sort Command line arguments
7.3.7.Get the path that stores favorite links
7.3.8.Use PlatformID class to identify the currently executing operating system.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.