How can i know which version of .Net Framework

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi guys,

How can i know which version of .NET Framework am i using in my server. Any command of any place can show me the correct information?
I found that the componenet i create is run smoothly in .NET Framework 1.0, and not so smooth in version 1.1. So i suspect the new server has install .NET Framework 1.1.

From Zachary
 
Look in the following directory (or equivalent on your computer)
C:\windows\Microsoft.NET\Framework and you will see directories that
represent the versions of the framework. I believe you can use
System.Reflection namespaces AssemblyVersionAttribute class to get the
version of a loaded assembly. Just look at one of the assemblies that come
with the Framework.

Mitch Ruebush
Microsoft Regional Director -
http://www.microsoftregionaldirectors.com
Visual Developer - .NET MVP -
Architect | Evangelist | Teacher
Online Consulting, Inc. - http://www.onlc.com
MCSD, MCAD, MCDBA, MCSE, MCT




Zachary said:
Hi guys,

How can i know which version of .NET Framework am i using in my server.
Any command of any place can show me the correct information?
I found that the componenet i create is run smoothly in .NET Framework
1.0, and not so smooth in version 1.1. So i suspect the new server has
install .NET Framework 1.1.
 
Back
Top