Skip to content

Instantly share code, notes, and snippets.

@fumiya-kume
Last active April 8, 2016 16:39
Show Gist options
  • Save fumiya-kume/bba2bec83495b761f64d1a30d47969d1 to your computer and use it in GitHub Desktop.
Save fumiya-kume/bba2bec83495b761f64d1a30d47969d1 to your computer and use it in GitHub Desktop.
Windows10 IoT Core チュートリアル
using Windows.ApplicationModel.Background;
namespace BackgroundApplication1
{
public sealed class StartupTask : IBackgroundTask
{
public void Run(IBackgroundTaskInstance taskInstance)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment