online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
using System; public class Program { static string Afficher(int[,] m) { string lignePleine = new string('-', m.GetLength(1) * 6 + 1); var result = ""; for (int ligne = 0; ligne < m.GetLength(0); ++ligne) { result += lignePleine + "\n" + "|"; for (int colonne = 0; colonne < m.GetLength(1); ++colonne) { result += $"{m[ligne, colonne],3} |"; } result += "\n"; } result += lignePleine + '\n'; return result; } public static void Main(string[] args) { int[,] matrice = new int[5, 5]; Console.WriteLine(Afficher(matrice)); } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue