Hi all,

I am newbie to .NET technology, but through some forum I know that it is possible to call VB .Net function call from a managed C++ code. The VB .Net code is some what like this which is in Sample.vb

using System
Public class Test
Public Function getName(ByVal fsName as String) as String
Dim lsReturn as String
lsReturn = "Welcome " & fsName
Return lsReturn
...