System.Reflection.AmbiguousMatchException?
thanksAccording to the docs, this is "the exception that is thrown when binding to a method results in more than one method matching the binding criteria."
That's what it's for. Why you're getting it depends on what you're doing in your code. Care to post it?
Don
Hi donkiely, I am having the same error. I am not to sure on how to solve it. Here is my codes. Hope you can advice me on what to do.
<codes>
Dim x,y as short
dim input(x,y) as object
blah blah...
dim i,j as integer
For i = 0 To CDbl(examp.Text) - 1
For j = 0 To CDbl(input_s.Text) - 1
input(i, j) = inputTable.Rows(i).Item(j)
Next j
Next i
</codes>
0 comments:
Post a Comment