Пример #1
0
 public Layer(int width, int height, int depth, LayerConnectionType connection) : this(width, height, depth)
 {
     ConnectionType = connection;
 }
Пример #2
0
 // Layers with optional connection type
 public Layer(int width, LayerConnectionType connection) : this(width)
 {
     ConnectionType = connection;
 }