I've got a module in VB like this
Module Module1
Sub Main()
/* some piece of code here */
End Sub
End Module
And I want to execute its Main
from a project in C# because both the languages comes under .net
so is there a way to achieve this?