fork download
  1. using System;
  2.  
  3. namespace Balloons_Pops_Game_Variant_Four
  4. {
  5. public class Move
  6. {
  7. private int row;
  8. private int column;
  9.  
  10. public Move()
  11. {
  12. row = 0;
  13. column = 0;
  14. }
  15.  
  16. public Move(int selectedRow, int selectedColumn)
  17. {
  18. row = selectedRow;
  19. column = selectedColumn;
  20. }
  21.  
  22. public int Row
  23. {
  24. get { return row; }
  25. set { row = value; }
  26. }
  27.  
  28. public int Col
  29. {
  30. get { return column; }
  31. set { column = value; }
  32. }
  33. }
  34. }
  35.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
error CS5001: Program `prog.exe' does not contain a static `Main' method suitable for an entry point
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty