„day4.cs“ hinzufügen

added day 4
This commit is contained in:
Marcus Ferl 2022-12-17 09:22:51 +01:00
parent a1a4abcdfa
commit 6160756254

14
day4.cs Normal file
View File

@ -0,0 +1,14 @@
class Field{
string[,] bingoField = new string[5,5];
public Field(string[,] bingoField){
this.bingoField = bingoField;
}
public void markNumber(string markNumber){
int row = 5;
int columnn = 5;
}
}