Property
using System;
class MainClass {
static void Main() {
property pro = new property();
pro._saldo=25;
Console.WriteLine("Ther new value of the property is: "+pro._saldo);
}
}INFO
using System;
class MainClass {
static void Main() {
property pro = new property();
pro._saldo=25;
Console.WriteLine("Ther new value of the property is: "+pro._saldo);
}
}