会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
C#技术百科
问问你的心你有没有信心 做事情要专一坚定,执着
首页
博问
闪存
新随笔
订阅
管理
除去非空字符串函数
除去非空字符串函数
public string getNoNullString(string str)
{
str = string.IsNullOrEmpty(str) ? ("") : (str);
return str;
}
posted on
2009-01-17 09:35
王德田
阅读(
162
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部