A Microsoft platform for building and publishing apps for Windows devices.
Hello,
Welcome to Microsoft Q&A!
Xamarin Forms project contains System.Threading namespace. You just add the following in .cs file and please avoid adding the System.Threading with reference browser.
using System.Threading;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace App58
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
private static Timer timer;
}
}