Skip to content

Instantly share code, notes, and snippets.

View ikem-krueger's full-sized avatar

Ikem Krueger ikem-krueger

View GitHub Profile
@ikem-krueger
ikem-krueger / PHP mit Visual Studio Code.md
Created October 12, 2023 21:44 — forked from macx/PHP mit Visual Studio Code.md
PHP Server mit Visual Studio Code
@ikem-krueger
ikem-krueger / c_sharp_for_python.md
Last active March 8, 2024 02:45 — forked from mrkline/c_sharp_for_python.md
An intro to C# for a Python developer. Made for one of my coworkers.

C# For Python Programmers

Syntax and core concepts

Basic Syntax

  • Single-line comments are started with //. Multi-line comments are started with /* and ended with */.

  • C# uses braces ({ and }) instead of indentation to organize code into blocks. If a block is a single line, the braces can be omitted. For example,