Click here to Skip to main content
Click here to Skip to main content

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

By , 5 Aug 2004
 

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
No Biography provided

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberGuyThiebaut13 Jul '12 - 6:25 
GeneralPerhaps another solutionmemberEnadan2614 Feb '06 - 5:37 
GeneralGood trick but anybody who uses same name/diff case should be shotmemberRhelic12 Aug '04 - 3:04 
GeneralUseful trickstaffNishant S6 Aug '04 - 18:26 
GeneralRe: Useful trickmemberManish K. Agarwal7 Aug '04 - 2:15 

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

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