gpt4 book ai didi

c# - 如何将可为空的 int 转换为字符串

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

我需要将可为空的 int 转换为字符串

int? a = null;
string str = a.ToString();

如何无一异常(exception)地执行此操作?我需要将字符串设置为“Null”。请指导我。

最佳答案

您可以简单地使用 Convert.ToString() 来处理空值并且不会抛出异常

string str = Convert.ToString(a)

或者使用if条件

if(a.HasValue)
{
string str = a.Value.ToString();
}

或者使用?三元运算符

string str = a.HasValue ? a.Value.ToString() : string.Empty;

关于c# - 如何将可为空的 int 转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21581516/

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