Skip to content

Instantly share code, notes, and snippets.

View DanielKoehler's full-sized avatar

Daniel Arno George Koehler DanielKoehler

View GitHub Profile
@DanielKoehler
DanielKoehler / python - to - c#.md
Last active July 14, 2025 16:26 — forked from carols10cents/c#-to-rust.md
Python to C# Cheat Sheet

Python to C# Cheat Sheet

Variables

Python:

foo = 1
bar = "hi"
something_that_varies = 2 # Though strict immutability in Python isn't common.