G
Guest
Is it possible to do collections of struct __values in MC++ 2003?
How can I translate the following C# example to C++:
public sealed class PointsCollection : CollectionBase
{
public void Insert(int index, Point value)
{
List.Insert(index, value);
owner.UpdateRegion();
}
...
The compiler tells me there is no convertion from Point* to Object*.
What can I do?
Any help will be really appreciated!
How can I translate the following C# example to C++:
public sealed class PointsCollection : CollectionBase
{
public void Insert(int index, Point value)
{
List.Insert(index, value);
owner.UpdateRegion();
}
...
The compiler tells me there is no convertion from Point* to Object*.
What can I do?
Any help will be really appreciated!