1
+ using System ;
2
+
3
+ namespace DotnetBot
4
+ {
5
+ public static class Program
6
+ {
7
+ public static void Main ( string [ ] args )
8
+ {
9
+ string message = "" ;
10
+ if ( args . Length < 1 )
11
+ {
12
+ message = "Welcome to .NET Core!" ;
13
+ } else
14
+ {
15
+ foreach ( string item in args )
16
+ {
17
+ message += item ;
18
+ }
19
+ }
20
+ Console . WriteLine ( GetBot ( message ) ) ;
21
+ }
22
+
23
+ public static string GetBot ( string message )
24
+ {
25
+ string bot = "\n " + " " + message ;
26
+ bot += @"
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
+ ....... '...'.'. '.'.'.' ....
54
+ ....... .....'.. ..'.....
55
+ .. .......... ..'........
56
+ ............ ..............
57
+ ............. '..............
58
+ ...........'.. .'.'............
59
+ ............... .'.'.............
60
+ .............'.. ..'..'...........
61
+ ............... .'..............
62
+ ......... ..............
63
+ .....
64
+
65
+ " ;
66
+ return bot ;
67
+ }
68
+
69
+
70
+ }
71
+ }
0 commit comments