GetCORVersion Function

Returns the version number of the common language runtime (CLR) that is running in the current process.

HRESULT GetCORVersion (
        [in] LPWSTR  pbuffer,
        [in]  DWORD   cchBuffer, 
        [out] DWORD*  dwlength
); 

Parameters

  • pbuffer
    A pointer to a buffer in which the CLR returns a string specifying the version of the runtime that is currently loaded into the process. The returned string takes the same form as strings passed to CorBindToRuntimeEx, for example, "v1.0.1216". If the runtime has not yet been loaded into the process, the function returns the appropriate directory information for the latest version of the runtime installed on the computer.

  • cchBuffer
    The number of characters (WCHARs) that can be held in pbuffer.

  • dwLength
    A pointer to the number of characters actually returned in pbuffer. If pbuffer is a null pointer, the runtime returns E_POINTER. If the number of characters is greater then the length of pbuffer , the runtime returns ERROR_INSUFFICIENT_BUFFER.

Requirements

Platforms: Windows 2000, Windows XP, Windows Server 2003 family

Header: MSCorEE.idl

Library: MSCorEE.dll

.NET Framework Version: 2.0, 1.1, 1.0

See Also

Concepts

Hosting Global Static Functions