TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Pat
NA
3
0
SafeArray in C#
Oct 25 2006 2:41 PM
I have this method from an ocx that is expecting safearray object as arguments
ocx.GetData(
ref object ySafeArray
,
ref object xSafeArray
, ref int pts, ref double xbeg, ref double xend);
How do I create a SafeArray object in C# for the first two arguments? I did something like this...but that does not seem to work.
object yArray = new object();
object xArray = new object();
Thanks
Reply
Answers (
0
)
Callback
How do I make an Autorun.exe file?