Skip to content

Instantly share code, notes, and snippets.

View pczajkowski's full-sized avatar
🙉
I have no idea what I'm doing

Piotr Czajkowski pczajkowski

🙉
I have no idea what I'm doing
View GitHub Profile
@Gutek
Gutek / C# Version Cheat Sheet.md
Last active February 8, 2022 09:33
Short cheat sheet of changes in C# language from version 6 to 9

CS 6

read-only auto properties

Small help with immutable types...

// private readonly int _age;
// public int Age { get { return _age; } }
public int Age { get; }
@pczajkowski
pczajkowski / Djikstra.cs
Created December 21, 2017 11:10
Djikstra algorithm for C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
// Adapted from JavaScript example in The Imposter's Hanbook by Rob Conery
// Doesn't support negative edges!
namespace Djikstra
{