dotnet/maui

Add TryGetValue() to IPreferences

Open

#26,123 创建于 2024年11月26日

在 GitHub 查看
 (13 评论) (1 反应) (0 负责人)C# (23,245 star) (1,951 fork)batch import
area-essentialsgood first issueproposal/opent/enhancement ☀️

描述

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.

贡献者指南