Skip to content

Instantly share code, notes, and snippets.

using System;
public class Programm
{
public void Main(string[] arg)
{
Console.WriteLine("Hello World!");
@PasterLak
PasterLak / Array3D.cs
Last active December 20, 2022 13:37
Array3D
public class Array3D<T>
{
private T[] _data;
private int _width;
private int _height;
private int _depth;
public int Width => _width;
public int Height => _height;