Hello all,
Due to some Typing Complications Using C# i am forced to use some VB.NET code to get some data. i will describe the problem as good as i can
I have an object from a dll (3rd party, non editable, Probably VB) lets call that A
A has a few properties, one of them is Read only (COM)Object B
B is shown in my tooltip when i hover above it that its a (COM)Object of type B
Object explorer shows:
in the old code i was told to rewrite (VB to C#) i see:
however C# tells me B does not have a LoadXml.
What do i need to do to get the data loaded into B with LoadXml?
Thanks in advance
Due to some Typing Complications Using C# i am forced to use some VB.NET code to get some data. i will describe the problem as good as i can
I have an object from a dll (3rd party, non editable, Probably VB) lets call that A
A has a few properties, one of them is Read only (COM)Object B
B is shown in my tooltip when i hover above it that its a (COM)Object of type B
Object explorer shows:
object B { get; }
Member of <dllname>.A
Member of <dllname>.A
Code:
A.B.LoadXml(strXML)
What do i need to do to get the data loaded into B with LoadXml?
Thanks in advance
Comment