Working in Godot with SQLite and C#

Here are the steps I took to get SQLite to work in a C# project. 1. Create a new project. 2. Add a plain Node. 3. Rename the node to “Database” and save the scene as Database.tscn. 4. Right click…

C# Crash Course

An overview of the C# language with some code examples. Intended for those new to C# but with some previous exposure to programming. Variables A variable is a container for information. Variables in C# have a type like int or…