Analise o código em .NET C#:
static void Add(ref int x,int y) {
if (y > 0) {
x = x + 1;
y = y - 1;
Add(ref x,y);
}
}
static void Main(string[] args) {
int x = 0,y = 5;
Add(ref x,y);
}
Com base no código, após a execução da função Main, os valores das variáveis x e y serão, respectivamente,