Talk:C-Sharp Example of Dungeon-Building Algorithm
Revision as of 09:02, 2 June 2016 by Hexman (talk | contribs) (Hexman moved page Talk:Java Example of Dungeon-Building Algorithm to Talk:C-Sharp Example of Dungeon-Building Algorithm: The code example given is in C#. Though syntactically similar, C# is a different programming language created by Microsoft ...)
Why all the empty lines?
Isn't
public class dungen{ //max size of the map private int xmax = 80; //80 columns private int ymax = 25; //25 rows
easier to read then:
public class dungen{ //max size of the map private int xmax = 80; //80 columns private int ymax = 25; //25 rows
--Soyweiser 21:02, 31 January 2010 (UTC)