public void CopyFiledValueFromPropertyValues(PropertyValueCollection propertys)
 {
     propertys.ForEach(p =>
     {
         string key = p.Definition.Name;
         if (this.ContainsKey(key))
         {
             this.SetValue(key, p.GetRealValue());
         }
     });
 }
示例#2
0
 private static void OutputServerProperties(PropertyValueCollection spc)
 {
     spc.ForEach(pv => Console.WriteLine("{0}: {1}", pv.Definition.Name, pv.StringValue));
 }
 private static void OutputServerProperties(PropertyValueCollection spc)
 {
     spc.ForEach(pv => Console.WriteLine("{0}: {1}", pv.Definition.Name, pv.StringValue));
 }