Skip to content

Instantly share code, notes, and snippets.

View Him4enko's full-sized avatar
🌴
On vacation

Evgeniy Soroka Him4enko

🌴
On vacation
View GitHub Profile
// Online C# Editor for free
// Write, Edit and Run your C# code using C# Online Compiler
using System;
using System.Linq;
public class HelloWorld
{
public static void Main(string[] args)
{
Combinational gateA = new Combinational(5);
/*
* Class of abstract Element
*/
using System;
using System.Linq;
public class Element
{
private string name;
@Him4enko
Him4enko / pzeleven.cs
Created March 17, 2023 16:29
ПЗ 11
/*
* Class of abstract Element
*/
public class Element
{
private string name;
private int countInput;
private int countOutput;
public Element()