senzacionale
senzacionale

Reputation: 20936

XAMARIN the call is ambiguous between the following methods

How can i fix this problem, I have tried everything but always the same error:

I am using this API: https://github.com/xamarin/google-apis

enter image description here

Upvotes: 0

Views: 546

Answers (1)

SKall
SKall

Reputation: 5234

Convert it to explicit call to the extension:

        var attribute = 
         Google.Apis.Util.Utilities.
             GetCustomAttribute<Google.Apis.Util.RequestParameterAttribute>
                 (property);

Upvotes: 2

Related Questions