- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
public static void Print(object obj)
{
Console.Write(obj);
}
public static void Print1(string format, object obj1)
{
Console.Write(format, obj1);
}
public static void Print2(string format, object obj1, object obj2)
{
Console.Write(format, obj1, obj2);
}
public static void Print3(string format, object obj1, object obj2, object obj3)
{
Console.Write(format, obj1, obj2, obj3);
}
// И тд
public static void PrintLine(object obj)
{
Console.WriteLine(obj);
}
public static void PrintLine1(string format, object obj1)
{
Console.WriteLine(format, obj1);
}
public static void PrintLine2(string format, object obj1, object obj2)
{
Console.WriteLine(format, obj1, obj2);
}
public static void PrintLine3(string format, object obj1, object obj2, object obj3)
{
Console.WriteLine(format, obj1, obj2, obj3);
}
/// И тд
public static ConsoleKeyInfo ReadKey()
{
return Console.ReadKey();
}
public static ConsoleKeyInfo WaitKey()
{
return Console.ReadKey(true);
}
guest 19.02.2016 08:32 # +2
Vindicar 19.02.2016 09:04 # +2
cykablyad 19.02.2016 10:53 # +2
Lokich 19.02.2016 12:56 # +2
Vasiliy 19.02.2016 13:00 # +3
Lokich 19.02.2016 13:43 # +1
Vasiliy 19.02.2016 13:53 # 0
cykablyad 19.02.2016 14:36 # 0
nihau 19.02.2016 16:30 # +4
bormand 19.02.2016 19:29 # +1
inkanus-gray 20.02.2016 00:24 # 0
bormand 20.02.2016 00:27 # 0
kegdan 20.02.2016 09:50 # 0
inkanus-gray 20.02.2016 00:23 # 0
cykablyad 19.02.2016 14:32 # 0
gost 19.02.2016 13:13 # +2