zdravím, chci se zeptat, co znamená v tomto kodu,
1. namespace?
2.tento řádek class MainClass
3.tento public static void Main(string[] argd)
4. a ještě proč jsou tam ty \a ??? Console.WriteLine("Zadej text: \a");
Děkuji moc
using System;
namespace prikladtextovky
{
class MainClass
{
public static void Main(string[] argd)
{
string i;
Console.WriteLine("Zadej text: \a");
i = Console.ReadLine();
Console.WriteLine(i + ",Hezky jste to napsal \a :)");
Console.ReadLine();
}
}
}
Editoval djanosik: Kód vložen mezi k tomu určených tagů.