mirror of
https://github.com/neogeek23/Life.git
synced 2026-02-04 02:58:17 +00:00
19 lines
461 B
C#
19 lines
461 B
C#
|
|
using System;
|
|||
|
|
using System.CodeDom;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace N_Space{
|
|||
|
|
public class Region_Test{
|
|||
|
|
public void CreateRegionTestObject() {
|
|||
|
|
Region regionCheck = new Region(0);
|
|||
|
|
|
|||
|
|
if (regionCheck == null) {
|
|||
|
|
throw new System.ArgumentException("Region created cannot be null");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|