View difference between Paste ID: VmY4EutD and 0rqVtEe4
SHOW: | | - or go back to the newest paste.
1
'
2
' Created by SharpDevelop.
3
' User: Einlander
4
' BUG: Smuxi does not use, the consoles output codepage
5
'      If you run the application from dos and pipe it to a file it shows properly: .exe >output.txt
6
' Date: 3/25/2015
7
' Time: 4:11 AM
8
' 
9
'
10
' To change this template use Tools | Options | Coding | Edit Standard Headers.
11
'
12
13
14-
		Console.Write("Session.Command /echo 野々原ゆずこさん誕生日おめでとうございます!") ' Write Some text to ourself     
14+
15
	Sub Main()	
16
		Console.OutputEncoding = System.Text.Encoding.UTF8 ' Set the consoles output codepage
17
		Console.Write("Session.Command /echo 野々原ゆずこさん誕生日おめでとうございます!") ' Write Some text to ourself 
18
		' If you run the application from dos and pipe it to a file it shows properly: .exe >output.txt
19
	End Sub
20
End Module