Game of Life in Uno Platform
Uno Platform WinUI
Dec 14, 2020

Game of Life in Uno Platform

In this article, we will explore the fascinating Game of Life and learn how to implement it in C# and XAML using the Uno Platform. We will cover the rules of the game, create the solution, implement game logic, build the user interface, add themes, and see it run everywhere - on Windows, Android, iOS, macOS, web, Linux, and Tizen! Join us on this exciting journey of creating and exploring the Game of Life.

Visual Studio General .NET Core Uncategorized
Dec 14, 2019

A Christmas C# riddle

In this C# Advent entry, the author presents a riddle for C# developers. Based on the given code snippets and the behavior of the program, they explain why the program's output is "False" instead of "True". The solution revolves around the difference between a struct and a class in C#. The article emphasizes the importance of keeping C# structs immutable to ensure a clear understanding of the inner state of an instance. Ready to check out the solution?

Visual Studio General .NET Core Uncategorized
Dec 14, 2019

Vánoční C# hádanka

Jak se chovají struktury v C#? Proveďte tuto malou hádanku a zjistěte, proč program vypsal false místo true. Zjistíte, že struktury jsou hodnotové typy a jejich chování se liší od polí. Přečtěte si článek pro vysvětlení a řešení!