Advertisement
Guest User

Untitled

a guest
Mar 25th, 2015
548
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. Module Module1
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement