gpt4 book ai didi

c# - 如何重置 PasswordChar?

转载 作者:太空狗 更新时间:2023-10-29 20:49:15 25 4
gpt4 key购买 nike

我想在用户单击按钮时将文本框中的 PasswordChar 设为空(这样他们就可以确认自己写得正确,这比输入两次要容易得多)

但是,当我这样做时:

password.PasswordChar = null;

它说

Cannot convert null to 'char' because it is a non-nullable value type

将它设置为 '' 表示它是一个空字符,而 ' ' 只是让它成为一个空格。我该怎么办?

最佳答案

您可以使用:

password.PasswordChar = '\0';

\0 指的是 null character .

关于c# - 如何重置 PasswordChar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17871910/

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