ICorDebugMergedAssemblyRecord::GetCulture Method

Gets the culture name string of the assembly.

Syntax

HRESULT GetCulture(  
   [in] ULONG32 cchCulture,
   [out] ULONG32 *pcchCulture,
   [out, size_is(cchCulture), length_is(*pcchCulture)] WCHAR szCulture[]  
);  

Parameters

cchCulture
[in] The number of characters in the szCulture buffer.

pcchCulture
[out] The number of characters actually written to the szCulture buffer.

szCulture
[out] A character array that contains the culture name.

Remarks

The culture name is a unique string that identifies a culture, such as "en-US" (for the English (United States) culture), or "neutral" (for a neutral culture).

Note

This method is available with .NET Native only.

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl, CorDebug.h

Library: CorGuids.lib

.NET Framework Versions: Available since 4.6, .NET Native only

See also