Originally Posted by
timbomfg
I code in VB.net but also work heavily on a couple of linux based projects. As a result, i swear by VirtualBox. If you predominantly need linux support for coding, VirtualBox would be a good way to go!
Code:
directhex@mortos:/tmp$ lsb_release -d
Description: Ubuntu 8.10
directhex@mortos:/tmp$ cat hello.vb
Imports System
Module Module1
Sub Main()
Console.WriteLine ("Hello World")
End Sub
End Module
directhex@mortos:/tmp$ vbnc hello.vb
version (Mono 2.0 - r)
Assembly 'hello, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' saved successfully to '/tmp/hello.exe'.
Compilation successful
Compilation took 00:00:02.5077040
directhex@mortos:/tmp$ mono hello.exe
Hello World
directhex@mortos:/tmp$