Quick actions

cmd+k|ctrl+k

Navigation

Languages

PrimerProgramaClase3

Snippet info

Language

Csharp

Visibility

public

Author

rafaelzelaya

Created

2016-07-27T16:08:09Z

Updated

2016-08-08T18:26:16Z

using System;

class MainClass {
    static void Main() {
        //String s = Console.ReadLine();
        //ingresando el valor de s
        String s = "Valor de s";
        Console.WriteLine("Hello World!");
        Rafael rafael = new Rafael();
        Console.WriteLine(rafael.EnviarNombre());
        Console.WriteLine("Agregar1");
        rafael.Agregar1();rafael.Agregar1();
        rafael.Agregar1();
        Console.WriteLine("Despues de agregar1:"
        +rafael.Cantidad);
        //agregando una coordenada de la migaja
        
        rafael.co.Add(new Rafael.Coordenadas(6,5,"hola"));
    }
}
INFO