Last active
April 8, 2016 16:39
-
-
Save fumiya-kume/bba2bec83495b761f64d1a30d47969d1 to your computer and use it in GitHub Desktop.
Windows10 IoT Core チュートリアル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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