Windows Runtime (WinRT) is a Microsoft platform architecture that allows applications to run in a sandboxed environment exposing a 'Windows Modern Style' UI/UX. Not to be confused with Windows RT, the edition of Windows 8 for ARM devices; see windows-rt.

learn more… | top users | synonyms

0
votes
1answer
35 views

When only an Async method is available [on hold]

I have a Windows 10 Universal App (IoT) project with a class called SignalQueue. My class requires a file called MyFile.txt so I ...
2
votes
1answer
298 views

Restore SQLite database backup

I have an application that provides the user the ability to backup the local SQLite database to another location. I then provide the ability to restore the backup database and overwrite the current ...
5
votes
1answer
128 views

XAML Markup Improvements

I have a Windows Store and Windows Phone app, and in this app I have many pages like this: ...
5
votes
2answers
290 views

Loading data into a number of different typed List<T>s: Can I do without reflection?

I'm not sure whether my distaste for reflection is justified or not, but it feels ucky that I'm using reflection here. I'm trying to make a very simple class which has a number of ...
5
votes
1answer
1k views

Verifying the type of an AggregateException's inner exception in a unit test

I've got the following code inside an integration test. ...