C#如何把自己创建的结构体转化为string?
2 回答
杨__羊羊
TA贡献1943条经验 获得超7个赞
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | struct mystruct { public string a; public string b; public int c; public override string ToString() { if(!string.IsNullOrEmpty(a) && !string.IsNullOrEmpty(b)) return string.Format("{0} {1} {2}",a,b,c); else return ""; } }
string str=""+ms.ToString(); |
- 2 回答
- 0 关注
- 484 浏览
添加回答
举报
0/150
提交
取消