Thread: [Question]about C++/CLR ConsoleApplication

  1. #1
    Registered User
    Join Date
    May 2015
    Posts
    2

    Lightbulb [Question]about C++/CLR ConsoleApplication

    hi Cboard

    i am using
    Visual Studio Professional 3012 ,
    my questions about c++/clr:


    1-using C++/CLR just with
    .net framework 4.x ?


    2-using C/C++->Code Generation just with:
    a-Multi-threaded Debug DLL (/MDd)
    b-Multi-threaded DLL (/MD)
    [Question]about C++/CLR ConsoleApplication-un_title-jpg

    i google about it but not sure!!
    Last edited by Bits; 05-05-2015 at 09:24 PM.

  2. #2
    Hurry Slowly vart's Avatar
    Join Date
    Oct 2006
    Location
    Rishon LeZion, Israel
    Posts
    6,788
    I do not understand your question.
    You can use the C++.net bastard to write using Microsoft net framework, and you will need CLR (Common Language Runtime) to run it.

    Or you can use pure C++ (at least microsoft version of it) and then link it to C++ run-time using one of the 4 available options (For Debug version /MDd or /MTd, For release version /MD ot /MT), I personally prefer /MT - since the exe size is not critical nowadays and saves the hassle of installing proper run-time libraries on the target system
    All problems in computer science can be solved by another level of indirection,
    except for the problem of too many layers of indirection.
    – David J. Wheeler

  3. #3
    Registered User
    Join Date
    May 2015
    Posts
    2
    Quote Originally Posted by vart View Post
    I do not understand your question.
    You can use the C++.net bastard to write using Microsoft net framework, and you will need CLR (Common Language Runtime) to run it.

    Or you can use pure C++ (at least microsoft version of it) and then link it to C++ run-time using one of the 4 available options (For Debug version /MDd or /MTd, For release version /MD ot /MT), I personally prefer /MT - since the exe size is not critical nowadays and saves the hassle of installing proper run-time libraries on the target system

    can i using C++/clr apps with framework 2 ?

    can i using c++/clr apps with Code Generation-> Runtime Library->Multi-threaded Debug (/MTd) ?

    sorry for my basic English!!
    Last edited by Bits; 05-05-2015 at 09:55 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 2
    Last Post: 08-25-2014, 05:41 PM
  2. Replies: 1
    Last Post: 03-23-2011, 09:00 AM
  3. *szString = things question/memory question
    By Jang in forum C Programming
    Replies: 3
    Last Post: 01-20-2011, 04:59 AM
  4. Newbish Question file reading question....
    By kas2002 in forum C Programming
    Replies: 23
    Last Post: 05-17-2007, 12:06 PM
  5. Self regiserting DLLs question and libraries question.
    By ApocalypticTime in forum Windows Programming
    Replies: 2
    Last Post: 03-22-2003, 02:02 PM