Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- '
- ' Created by SharpDevelop.
- ' User: Einlander
- ' BUG: Smuxi does not use, the consoles output codepage
- ' If you run the application from dos and pipe it to a file it shows properly: .exe >output.txt
- ' Date: 3/25/2015
- ' Time: 4:11 AM
- '
- '
- ' To change this template use Tools | Options | Coding | Edit Standard Headers.
- '
- Module Module1
- Sub Main()
- Console.OutputEncoding = System.Text.Encoding.UTF8 ' Set the consoles output codepage
- Console.Write("Session.Command /echo 野々原ゆずこさん誕生日おめでとうございます!") ' Write Some text to ourself
- ' If you run the application from dos and pipe it to a file it shows properly: .exe >output.txt
- End Sub
- End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement