int c = abc.get_xyz();
and also:
abc.set_xyz(val);
"Leo2005" <Leo2005 (AT) discussions (DOT) microsoft.com> wrote
Quote:
Hello,
I have a c# dll that I am referencing for my j# program. Say, I want to
access the get accessor of "xyz" property in a file "abc.cs", how would I
call it from my j# program?
I tried the following
int c = abc. xyz; and the following error is thrown ...
Cannot find field 'xyz' in class 'abc'. I know very sure that the property
exists but why is it not being recognized? Any help is really
appreciated.
Thanks. |