/ Published in: C#
This is stupidly simple, but I always forget it.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
public class State { public State() :this(5) { } public State(int numberOfNodes) { //create nodes } }