コード例 #1
0
 public Channel(XElementWithID source, string target)
     : base(ns + "channel")
 {
     this.Add(
         new XAttribute("source", "#" + source.ID),
         new XAttribute("target", target)
         );
 }
コード例 #2
0
ファイル: Collada.cs プロジェクト: klightspeed/RS5-Extractor
 public Channel(XElementWithID source, string target)
     : base(ns + "channel")
 {
     this.Add(
         new XAttribute("source", "#" + source.ID),
         new XAttribute("target", target)
     );
 }