Ejemplo n.º 1
0
    public static void Main(string[] args)
    {
        MemoryCell m = new MemoryCell( );

        m.Write("57");
        string val = (string)m.Read( );

        Console.WriteLine("Contents are: " + val);
    }