CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Arjay

Search: Search took 0.15 seconds.

  1. Replies
    7
    Views
    2,158

    Re: Convert this line from C++ to C#

    #define is a pre-processor directive. It makes sense to use in C++ because it's code shorthand. Macro use is popular in C++, such as the MFC/ATL TRACE macro.

    The drawback to them in C++ is that...
  2. Replies
    7
    Views
    2,158

    Re: Convert this line from C++ to C#

    First of all, look in your existing source code to find out where ROTATE(...) is used. You should find that the variables g and tau are either constants, globals or locals that are already defined....
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured