Ejercicio
Función Doble parámetro de referencia
Objetivo
Cree una función denominada "Doble" para calcular el doble de un número entero y modifique los datos pasados como argumento. Debe ser una función "vacía" y debe usar "parámetros de referencia". Por ejemplo.
x = 5;
Doble(ref x);
Console.Write(x);
mostraría 10
Código de Ejemplo
// Importing the System namespace to access basic system functions
using System;
class Program
{
// Function to calculate and modify the number passed as a reference parameter
public static void Double(ref int number)
{
// Multiply the input number by 2 to double it
number = number * 2;
}
// Main method where the Double function is called
public static void Main()
{
// Initialize the integer variable x
int x = 5;
// Call the Double function with x passed by reference
Double(ref x);
// Display the modified value of x (doubled)
Console.Write(x);
}
}