string转为int
原句为:string img = (node.Value != null ? node.Value : (node.Attributes != null && node.Attributes.Count > 0) ?node.Attributes[3].Value : node.Name);
这里取出来的时候是string 型.
但是要把它转换为int型,这样才能将其作为图片索引号,以添加图片.
请问如何将string转为int