示例#1
0
 public List <List <String> > GetItemProperties(string path)
 {
     return(webserviceProxy.GetProperties(path, null).Select(property => new List <String>
     {
         property.Name, property.Value
     }).ToList());
 }