CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2002
    Location
    UK
    Posts
    75

    C# in VC.NET Standard?

    Hi,

    I've recently bought VC.NET Standard, which I believe comes with some command line tools to build C# and VB apps.

    Is this possible, and if so, is there a tutorial in building C# apps in this way? I'm just interested in giving it a go, rather than any full-scale development.

    Thanks,

    Paul.


  2. #2
    Join Date
    Sep 2000
    Location
    Indianapolis
    Posts
    6,758

    Re: C# in VC.NET Standard?



    The compilers for VB .NET and C# are a part of the .NET Framework -- not a part of Visual Studio .NET or any other IDE. This means that if you have the .NET Framework installed that you have the ability to create C# and VB .NET applications (no Visual Studio .NET is needed).

    Because you have VC++ .NET, (I assume that is what you meant by VC and not Visual C# .NET), you probably have the .NET Framework already installed. The command line compiler for C# is csc.exe. You should be able to find this on your machine. You should be able to write the code in your VC++ editor and compile it to C# using the command line.

    - Brad!

    Site Manager, CodeGuru.com
    Check out my newest book (Sams Teach Yourself C# in 21 Days):
    http://books.internet.com/books/0672320711
    -----------------------------------------------
    Brad! Jones,
    Yowza Publishing
    LotsOfSoftware, LLC

    -----------------------------------------------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured