locked
What does the % mean? RRS feed

  • Question

  • I am implementing the method

    bool PreFilterMessage(Message% m);

    and I do not know what the % does. Can someone point me in the right direction?

     

    Thanks,

    Jeff

    Monday, April 5, 2010 8:11 PM

Answers

  • If this is a C++/CLI application then it is a CLI tracking reference, it is similar to native C++'s &, except that it works properly with the .NET framework. See this for more information.
    Visit my (not very good) blog at http://c2kblog.blogspot.com/
    • Proposed as answer by ildjarn Monday, April 5, 2010 11:42 PM
    • Marked as answer by Yi Feng Li Tuesday, April 13, 2010 5:36 AM
    Monday, April 5, 2010 8:20 PM

All replies

  • If this is a C++/CLI application then it is a CLI tracking reference, it is similar to native C++'s &, except that it works properly with the .NET framework. See this for more information.
    Visit my (not very good) blog at http://c2kblog.blogspot.com/
    • Proposed as answer by ildjarn Monday, April 5, 2010 11:42 PM
    • Marked as answer by Yi Feng Li Tuesday, April 13, 2010 5:36 AM
    Monday, April 5, 2010 8:20 PM
  • Thank you!
    Monday, April 5, 2010 8:22 PM