This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Array3D<T> | |
{ | |
private T[] _data; | |
private int _width; | |
private int _height; | |
private int _depth; | |
public int Width => _width; | |
public int Height => _height; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public class Programm | |
{ | |
public void Main(string[] arg) | |
{ | |
Console.WriteLine("Hello World!"); |