dotnet/maui

Add TryGetValue() to IPreferences

Open

#26.123 aberto em 26 de nov. de 2024

Ver no GitHub
 (13 comments) (1 reaction) (0 assignees)C# (23.245 stars) (1.951 forks)batch import
area-essentialsgood first issueproposal/opent/enhancement ☀️

Description

Description

Currently IPreferences allows checking if the property exists via ContainsKey(string key) method but it would be nice if it had a TryGetValue<T>(string propertyName, out T value)

Public API Changes

Public TryGetValue<T>(string propertyName, out T value) would be added to the IPreferences interface.

Intended Use-Case

More concise code.

Guia do colaborador