Вывод в консоле на Си Шарп делается очень просто!
Мы рассмотрим текст программы, где вывод в Консоле выполняется 2 способами. А ввод одним способом!
Текст программы:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication5
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("input - int double string:");
int i = Convert.ToInt32(Console.ReadLine());
double d = Convert.ToDouble(Console.ReadLine());
string s = Console.ReadLine();
Console.WriteLine("i = " + i + " d = " + d + " s = " + s);
Console.WriteLine("i = {0} d = {1} s = {2}", i, d, s);
Console.Read();
}
}
}