Xamarin.forms ios 的跨平台秒表

Xamarin.forms cross platform stopwatch for ios

我对移动开发完全陌生。我需要一个秒表的例子。我的项目是以跨平台xamarin.forms和运行ios为主平台。请帮我!谢谢!

.NET API Browser 是一个很好的资源,您可以在其中找到所需的一切,在大多数情况下还提供示例。

来自 .NET API 浏览器:

using System;
using System.Diagnostics;
using System.Threading;
class Program
{
    static void Main(string[] args)
    {
        Stopwatch stopWatch = new Stopwatch();
        stopWatch.Start();
        Thread.Sleep(10000);
        stopWatch.Stop();
        // Get the elapsed time as a TimeSpan value.
        TimeSpan ts = stopWatch.Elapsed;

        // Format and display the TimeSpan value.
        string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",
            ts.Hours, ts.Minutes, ts.Seconds,
            ts.Milliseconds / 10);
        Console.WriteLine("RunTime " + elapsedTime);
    }
}

可以找到完整的文档 here

P.S.: link 我分享的目标是 .NET Standard 2.0