Quick actions

cmd+k|ctrl+k

Navigation

Languages

Property's

Snippet info

Language

Csharp

Visibility

public

Author

alexis-r777

Created

2016-08-22T17:18:58Z

Updated

2016-08-22T17:47:39Z

using System;

class MainClass {
    static void Main() {
        property pro = new property();
        
        pro.saldo=50;
        
        Console.WriteLine("Ther new value of the property is: "+pro._saldo);
        
        
        //segundo property
        pro.nodo = "Este es el valor del nodo...";
        Console.WriteLine(pro.nodo);
        
    }
}
INFO