Quick actions

cmd+k|ctrl+k

Navigation

Languages

Property

Snippet info

Language

Csharp

Visibility

public

Author

katya

Created

2016-08-22T17:45:07Z

Updated

2016-08-22T17:45:07Z

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