使用环境类获取系统启动以来经过的毫秒数的 C# 程序
在 C# 中,环境类提供有关当前平台的信息并操作当前平台。它对于获取和设置各种与操作系统相关的信息很有用。我们可以使用它来检索命令行参数信息、退出代码信息、环境变量设置信息、调用堆栈信息的内容以及自上次系统启动以来的时间(以毫秒为单位)信息。通过使用一些预定义的方法,我们可以使用 Environment 类获取操作系统的信息。在本文中,我们将获取毫秒数,因此我们使用 Environment 类的TickCount属性。 TickCount 属性用于获取环境类从开始的毫秒数。它将以整数格式返回秒数
语法:
int Environment.TickCount
返回类型:返回经过的秒数,它是一个整数
示例 1:
C#
// C# program to evaluate the sum and then find the time
// that elapsed since system started
using System;
class GFG{
static public void Main()
{
// Evaluate the expression
int summ = 2 + 3;
Console.WriteLine("Sum is: " + summ);
// Count the elapsed seconds
Console.WriteLine("So, the tick count is : " +
Environment.TickCount);
}
}
C#
// C# program to find the time with out
// any delay (With out no operation)
using System;
class GFG{
static public void Main()
{
// Count the elapsed seconds
Console.WriteLine("The tick count is : " +
Environment.TickCount);
}
}
输出:
Sum is: 5
So, the tick count is : 12173138
示例 2:
C#
// C# program to find the time with out
// any delay (With out no operation)
using System;
class GFG{
static public void Main()
{
// Count the elapsed seconds
Console.WriteLine("The tick count is : " +
Environment.TickCount);
}
}
输出:
The tick count is : 11475417