Guest User

Untitled

a guest
Mar 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class CFoo
  2. {
  3. public:
  4.  
  5. ref struct FooStructure
  6. {
  7. int i;
  8. };
  9.  
  10. void Func_(IFoo^ my) {
  11. my->Func(gcnew FooStructure());
  12. }
  13. };
  14.  
  15. interface class IFoo
  16. {
  17. public:
  18. void Func(CFoo::FooStructure^ s);
  19. };
Add Comment
Please, Sign In to add comment