Click here to Skip to main content
Licence 
First Posted 5 Aug 2004
Views 49,882
Bookmarked 14 times

Calling C# assembly functions having same name differing only by case, in VB.NET

By | 5 Aug 2004 | Article
Calling C# assembly functions having same name differing only by case, in VB.NET.

Problem

I faced this issue today. I wanted to call a function written in C# from my VB.NET code, but I found out that the coder of the library had not followed Microsoft guidelines for interoperability and had used same name for two functions differing only by case having the same signature. I didn't have access to the C# code, so was helpless as VB.NET does not allow me to use any of these functions. It gives a compile time error:

Overload resolution failed because no accessible 'f<function> is most specific for these arguments: <function names> : Not most specific

Solution

In this case, we need to use Reflection. At least, I could only find this solution.

Suppose my C# assembly code looks like the following:

namespace CompTest
{
  /// <summary>
  /// Summary description for Class1.
  /// </summary>
  public class Class1
  {
    public string cameLate()
    {
      return "He came late";
    }

    public string camelAte()
    {
      return "Camel Ate Him";
    }
  }
}

We can call the function camelAte in VB.NET as follows:

Dim CSClass As New CompTest.Class1
Dim ReturnValue As Object
ReturnValue = CSClass.GetType.InvokeMember("camelAte", _
              System.Reflection.BindingFlags.Instance Or _
              BindingFlags.Public Or BindingFlags.InvokeMethod, _
              Nothing, CSClass, Nothing, Nothing, Nothing, Nothing)
TextBox1.Text = ReturnValue

InvokeMember function used here Invokes the specified member, using the specified binding constraints and matching the specified argument list. You can find more information on MSDN.

To pass parameters, create an array of Object. Insert parameters required to call the function in the array. Pass the array as a parameter in the InvokeMethod function.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

r@hu!



Canada Canada

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralPerhaps another solution PinmemberEnadan265:37 14 Feb '06  
GeneralGood trick but anybody who uses same name/diff case should be shot PinPopularmemberRhelic3:04 12 Aug '04  
GeneralUseful trick PinstaffNishant S18:26 6 Aug '04  
GeneralRe: Useful trick PinmemberManish K. Agarwal2:15 7 Aug '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 6 Aug 2004
Article Copyright 2004 by r@hu!
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid