B
Bob Whiton
I have an unmanaged class which has a member variable:
gcroot<DataTable*> myDataTable;
I would like to sink the RowDeleting event in my UNmanaged class. However,
I can't declare an event handler in the unmanaged class because the types
are managed (compiler error C3265).
For example, I can't declare the following sink:
static void Row_Deleting(Object* sender,
System:ata:ataRowChangeEventArgs* e)
Any ideas?
gcroot<DataTable*> myDataTable;
I would like to sink the RowDeleting event in my UNmanaged class. However,
I can't declare an event handler in the unmanaged class because the types
are managed (compiler error C3265).
For example, I can't declare the following sink:
static void Row_Deleting(Object* sender,
System:ata:ataRowChangeEventArgs* e)
Any ideas?