杨__羊羊
1234567891011121314 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();