fork download
  1. // ===++===
  2. //
  3. // OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: PruebaRead.cs
  9. //
  10. // Propósito: Demostración del uso del método Console.Read.
  11. //
  12. ============================================================*/
  13.  
  14. using System;
  15.  
  16. namespace Recetas.Cap02
  17. {
  18. internal class PruebaRead
  19. {
  20. public static void Main()
  21. {
  22. int lectura = Console.Read();
  23.  
  24. Console.WriteLine((char)lectura);
  25. }
  26. }
  27. }
Success #stdin #stdout 0.02s 33896KB
stdin
a
stdout
a