Timers General

The normal timers (system.timers.timer) are not accurate on fast timings. The thread sleep instruction timer also is often not. A minimum resolution may be 15mS or it may 55mS. Also it seems that if you specify a time of say 10mS, this will get rounded up to match the nearest time resolution – basically crap! […]

Read More

Shared memory

Sharing memory woth other apps / processes is a nightmare on UWP apps, because a UWP app exists in its own sandbox. See interprocess-communication

Read More

Releasing Project – Sideloading on Desktop Windows

Sideloading is when you will manually install the app from the install files (not via the Microsoft store) Releasing Microsoft docs: https://docs.microsoft.com/en-us/windows/uwp/publish/ Log into the store: https://partner.microsoft.com/dashboard Create the app. In Visual Studio Select ‘Release’ Menu > Build > Run code analysis on solution Do any checks you have on the project, set version number […]

Read More