gpt4 book ai didi

c# - 在静态类中存储用户信息

转载 作者:行者123 更新时间:2023-12-03 19:15:11 25 4
gpt4 key购买 nike

假设我们希望在用户登录到应用程序后保留用户信息以在多个类之间共享其数据,最好的方法是什么。

通常我会在静态类中保留这样的属性:

public User CurrentUser { get; set; }

你的想法是什么?

提前致谢。

最佳答案

在 WPF 中:假设您有一个名为 UserInfo 的类,其中包含有关当前登录用户所需的所有信息:

// You can use your Application.Current.Resources dictionary to store the
// current logged-in user info.
Application.Current.Resources["UserInfo"] = userInfo;

然后您可以使用以下代码在应用程序的任何位置检索当前用户信息对象:

var userInfo = Application.Current.Resources["UserInfo"] as UserInfo;

关于c# - 在静态类中存储用户信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8867817/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com