IDebugBinder3::GetTypeArgumentCount

Applies to: yesVisual Studio noVisual Studio for Mac

Note

This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

This method returns the number of argument types associated with this object.

Syntax

HRESULT GetTypeArgumentCount(
   UINT* uCount
);
int GetTypeArgumentCount(
   out uint uCount
);

Parameters

uCount
[out] Number of argument types associated with this object.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

The value returned by this method can be used to allocate an array for use with the GetTypeArguments method.

See also