コード例 #1
0
 public string this[int index]
 {
     get { return(XmlHelper.GetAttribute(AssemblyNodes[index], "path")); }
     set { XmlHelper.SetAttribute(AssemblyNodes[index], "path", value); }
 }
コード例 #2
0
ファイル: ProjectConfig.cs プロジェクト: mikkelbu/nunitv2
 private string GetAttribute(string name)
 {
     return(XmlHelper.GetAttribute(configNode, name));
 }