Completed Java Quests
Medieval Realms and BufferedImage
I've not posted any Unity build stuff recently (in fact since April 24th). I've been working away on an update for my plugin called...
Concatenating Strings Best Practice
So I've always done it with the plus (+) operator turns out using a prefix $ is much more efficient in terms of memory usage. //less...
Public Variable vs Public Property
Remember to always use a public property over a public variable. Public variables such as below are potentially dangerous; //bad practice...