Doug Null
Doug Null

Reputation: 8327

Can a VB.NET windows forms app reference and call a function in a C# DLL that references a C++ DLL?

Can a VB.NET 2017 Pro windows forms app project call a wrapper function in a C# DLL project that calls a function in a 3rd party x86 .NET Framework 3.5 DLL?

The VB.NET and C# wrapper DLL are mine.

Upvotes: 0

Views: 400

Answers (1)

ABS
ABS

Reputation: 2813

I think it's possible. Please read this

From here :

Some CLS-compliant language compilers, such as the C# or Visual Basic compilers, enable you to specify that you intend your code to be CLS-compliant. These compilers can check for CLS compliance and let you know when your code uses functionality that is not supported by the CLS. The C# and Visual Basic compilers allow you to mark a program element as CLS-compliant, which will cause the compiler to generate a compile-time error if the code is not CLS-compliant.

Upvotes: 1

Related Questions