2 implementations of FindNameForParamIndex
Microsoft.Interop.SourceGeneration (2)
MarshallingInfoParser.cs (1)
297public string FindNameForParamIndex(int paramIndex) => _innerProvider.FindNameForParamIndex(paramIndex);
MethodSignatureElementInfoProvider.cs (1)
27public string FindNameForParamIndex(int paramIndex) => paramIndex >= _method.Parameters.Length ? string.Empty : _method.Parameters[paramIndex].Name;
2 references to FindNameForParamIndex
Microsoft.Interop.SourceGeneration (2)
MarshallingInfoParser.cs (2)
297public string FindNameForParamIndex(int paramIndex) => _innerProvider.FindNameForParamIndex(paramIndex); 328string paramName = _innerProvider.FindNameForParamIndex(paramIndex);