What is a static Windows Runtime class, how should I express it, and when should I use it?

2 · Raymond Chen · Aug. 4, 2021, 2:23 p.m.
The Windows Runtime has this thing called “static classes”. What are they? A static Windows Runtime class is a class that has no instances. An example of this is the FileIO class: static runtimeclass FileIO { static IAsyncOperation<String> ReadTextAsync(IStorageFile file); static IAsyncAction WriteText(IStorageFile file, The post What is a static Windows Runtime class, how should I express it, and when should I use it? appeared first on The Old New Thing....