Create DLL in VB.NET

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I'm trying to create a dll in VB.NET, the DLL needs to be a C type DLL, i.e. not an Active X Dll..

an example in C would be...

Example - test_ep.c

#include
/* This function simply returns the larger of x and y*
long find_max(int x,int y)

if (x >= y) return x
else return y


is this possible......

Regard
 
* "=?Utf-8?B?TmljayBXcmlnaHQ=?= said:
I'm trying to create a dll in VB.NET, the DLL needs to be a C type DLL, i.e. not an Active X Dll...

Both, Ax and "C type" DLLs are not supported by VB.NET.
 
Back
Top