Debuggen
Debuggen








Last updated
Was this helpful?
Was this helpful?
using System;
namespace Demonstratie_debugger
{
class Program
{
public static void MethodeB() {
int getal = 2;
double kommagetal = 4.9;
Console.WriteLine("B");
}
public static void MethodeA() {
Console.WriteLine("A1");
MethodeB();
int getal1 = 56;
int getal2 = 13;
Console.WriteLine("A2");
}
static void Main(string[] args)
{
Program.MethodeA();
}
}
}