gpt4 book ai didi

c# - 检查对象不为空后从对象获取属性的最快方法是什么?

转载 作者:行者123 更新时间:2023-12-01 23:03:56 25 4
gpt4 key购买 nike

在检查对象不为空后,从对象获取属性的最快方法是什么(就最大限度地减少代码语句量而言)?

string s = null;

if (null != myObject)
{
s = myObject.propertyName;
}

最佳答案

供引用:等待future C# 6.0 feature使用可能的 ?. 语法进行 null 检查:

string result = obj?.ToString();

现在:使用ternary operator :

string result = obj != null ? obj.ToString() : null;

关于c# - 检查对象不为空后从对象获取属性的最快方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23078639/

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