Small help with immutable types...
// private readonly int _age;
// public int Age { get { return _age; } }
public int Age { get; }| 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 | |
| { |