REALLY dumb question - DOTNET

This is a discussion on REALLY dumb question - DOTNET ; oldschool visual studio 6 developer, WAY out of the loop... what exactly is the difference between .NET and 2005? im developing something in C# and all examples and tutorials i see explain that you have to do things a little ...

+ Reply to Thread
Results 1 to 7 of 7

REALLY dumb question

  1. Default REALLY dumb question

    oldschool visual studio 6 developer, WAY out of the loop... what exactly is
    the difference between .NET and 2005? im developing something in C# and all
    examples and tutorials i see explain that you have to do things a little
    differently depending on whether youre using visual c# .net or visual c#
    2005



  2. Default Re: REALLY dumb question

    Hello S,

    Each .NET FW version is bind to the new VS vesion, so just .NET means that
    "use any version of .NET (suppose to be the latest)"
    if it's noted VS 2005 it means that u need to use .NET 2.0

    Difference between .NET 1.1 (VS 2003) .NET 2.0 (VS 2005) and .NET 3.5 (VS
    Orcas) is in the number of supported features

    ---
    WBR, Michael Nemtsev [.NET/C# MVP].
    My blog: http://spaces.live.com/laflour
    Team blog: http://devkids.blogspot.com/

    "The greatest danger for most of us is not that our aim is too high and we
    miss it, but that it is too low and we reach it" (c) Michelangelo

    SM> oldschool visual studio 6 developer, WAY out of the loop... what
    SM> exactly is the difference between .NET and 2005? im developing
    SM> something in C# and all examples and tutorials i see explain that
    SM> you have to do things a little differently depending on whether
    SM> youre using visual c# .net or visual c# 2005
    SM>



  3. Default Re: REALLY dumb question

    Hi,

    VS .NET is for .NET Framework 1.x (C#1.0 ...)
    VS 2005 is for > .NET 2.x (C# 2.0...) and much more.

    E.g. http://msdn2.microsoft.com/en-us/lib...y0(VS.80).aspx

    Kind Regards, Alex Meleta
    [TechBlog] http://devkids.blogspot.com



    SM> oldschool visual studio 6 developer, WAY out of the loop... what
    SM> exactly is the difference between .NET and 2005? im developing
    SM> something in C# and all examples and tutorials i see explain that
    SM> you have to do things a little differently depending on whether
    SM> youre using visual c# .net or visual c# 2005
    SM>



  4. Default Re: REALLY dumb question

    ..Net is a general term.

    Each time a visual stuidios .Net is released - there is a 'Year' associated
    with it.

    Example

    Visual Studios 2003
    Visual Studios 2005

    Each has Vb.net and C#.net imbedded into it.

    So when specifiying questions...its also good practice to say something
    like,
    visual basic express 2005

    As each release of Visual Studios' has some different features.

    Take a look at teh "express" editions of C# and VB on microsofts sites.
    They are free downloads and have enough functionallity to get you going and
    start using - and looking into .Net
    ( its like a free 'for example' Visual Basic to compile code and create
    programs. ) - This is what schools or institutions would use to teach
    people.

    Hope that helps

    Miro


    "S Moran" <s@moran.com> wrote in message
    news:OGCTdP9vHHA.4612@TK2MSFTNGP04.phx.gbl...
    > oldschool visual studio 6 developer, WAY out of the loop... what exactly
    > is the difference between .NET and 2005? im developing something in C# and
    > all examples and tutorials i see explain that you have to do things a
    > little differently depending on whether youre using visual c# .net or
    > visual c# 2005
    >
    >




  5. Default Re: REALLY dumb question


    "S Moran" <s@moran.com> wrote in message
    news:OGCTdP9vHHA.4612@TK2MSFTNGP04.phx.gbl...
    > oldschool visual studio 6 developer, WAY out of the loop... what exactly
    > is the difference between .NET and 2005? im developing something in C# and
    > all examples and tutorials i see explain that you have to do things a
    > little differently depending on whether youre using visual c# .net or
    > visual c# 2005
    >
    >

    In the evolution of Visual Studio naming conventions, we got Visual Studio
    ..NET (AKA Visual Studio .NET 2002), which was replaced by Visual Studio .NET
    2003. When Visual Studio 2005 came out, the .NET was dropped from the name
    only. Visual Studio 2005 is just as much tied to the .NET Framework
    (v2.0/3.0) as were 2002(v1.0) and 2003(v1.1). Each version of Visual Studio
    includes a different version of C#, but there is no C#.NET vs. C# 2005. C#
    is a .NET programming language, period.
    You do things differently in VS 2005 to take advantage of new features in
    the IDE, the language (C#) and in v2.0 of the Framework.


  6. Default Re: REALLY dumb question


    "S Moran" <s@moran.com> wrote in message
    news:OGCTdP9vHHA.4612@TK2MSFTNGP04.phx.gbl...
    > oldschool visual studio 6 developer, WAY out of the loop... what exactly
    > is the difference between .NET and 2005? im developing something in C# and
    > all examples and tutorials i see explain that you have to do things a
    > little differently depending on whether youre using visual c# .net or
    > visual c# 2005
    >
    >


    It's like coming from VB 3.0, 4.0. 5.0 to 6.0 in VS 6.0. They all do the
    same thing with each version having new features.

    It's the same thing with VS.NET, VS NET 2003 and .NET 2005, each working
    with a different version of the .NET Framework or an update to an existing
    ..Net Framework, like VS.NET works with framework 1.0 while VS 2003 works
    with framework 1.1 now VS 2005 works with framework 2.0.


  7. Default Re: REALLY dumb question

    That is a bit oversimplified.

    The difference between 1.0, 1.1 and 2.0 is the main library used, as each
    iteration "replaced" the other. Beyond that, ie 3.0 and 3.5, the extras are
    added on top.

    --
    Gregory A. Beamer
    MVP; MCP: +I, SE, SD, DBA
    http://gregorybeamer.spaces.live.com
    Co-author: Microsoft Expression Web Bible (upcoming)

    ************************************************
    Think outside the box!
    ************************************************
    "Michael Nemtsev" <nemtsev@msn.com> wrote in message
    news:a279a63a3fce3e8c98e0dddcf76af@msnews.microsoft.com...
    > Hello S,
    >
    > Each .NET FW version is bind to the new VS vesion, so just .NET means that
    > "use any version of .NET (suppose to be the latest)"
    > if it's noted VS 2005 it means that u need to use .NET 2.0
    > Difference between .NET 1.1 (VS 2003) .NET 2.0 (VS 2005) and .NET 3.5 (VS
    > Orcas) is in the number of supported features
    >
    > ---
    > WBR, Michael Nemtsev [.NET/C# MVP]. My blog:
    > http://spaces.live.com/laflour
    > Team blog: http://devkids.blogspot.com/
    >
    > "The greatest danger for most of us is not that our aim is too high and we
    > miss it, but that it is too low and we reach it" (c) Michelangelo
    >
    > SM> oldschool visual studio 6 developer, WAY out of the loop... what
    > SM> exactly is the difference between .NET and 2005? im developing
    > SM> something in C# and all examples and tutorials i see explain that
    > SM> you have to do things a little differently depending on whether
    > SM> youre using visual c# .net or visual c# 2005
    > SM>
    >




+ Reply to Thread

Similar Threads

  1. really dumb question
    By Application Development in forum Java
    Replies: 6
    Last Post: 10-29-2007, 07:57 PM
  2. Probably a dumb question
    By Application Development in forum Inetserver
    Replies: 3
    Last Post: 07-09-2007, 01:16 AM
  3. Probably a dumb s/// question.
    By Application Development in forum Perl
    Replies: 2
    Last Post: 03-16-2005, 11:51 AM
  4. Help-Dumb question
    By Application Development in forum Microsoft Exchange
    Replies: 3
    Last Post: 10-21-2004, 07:30 PM
  5. Most likely a dumb question but ...
    By Application Development in forum basic.visual
    Replies: 2
    Last Post: 08-11-2004, 02:42 PM