code example

  1. News

    Using SQLite databases in UWP apps

    For many developers, SQLite has become the preferred client-side technology for data storage. It is a server-less, embedded, open-source database engine that satisfies most local data access scenarios. There are numerous advantages that come with its use, many of which are explained in the...
  2. News

    Smooth Interaction and Motion with the Visual Layer

    The Composition APIs come with a robust animation engine that provides quick and fluid motion running in a separate process from your Universal Windows Platform (UWP) app. This provides a consistent 60 frames per second when running your app on an IoT device as well as on a screaming gaming...
  3. V

    Visual Basic

    How can you make an analog clock? Thanks! Sent from my SM-T110 using Tapatalk
  4. AceInfinity

    Windows 7 [C#] Marshalling, Pointers, Structs & Classes Full Example

    class ShapeClass { public unsafe Shape* Polygon; } struct Shape { public unsafe Shape(char* name, int numsides) { Sides = numsides; Name = name; } public unsafe char* Name; public int Sides; } private unsafe void MainMethod() { char[] name =...
Back
Top