コード例 #1
0
        protected void ParseXml(XElement element)
        {
            this.name = element.Attribute("name").Value;
            this.id   = element.Attribute("id").Value;
            string category = element.Attribute("category").Value;

            this.category = Utils.Convert(category);
        }
コード例 #2
0
ファイル: ASTNode.cs プロジェクト: WilliamFei/Smartflow-Sharp
        protected void ParseXml(XElement element)
        {
            this.name = element.Attribute("name").Value;
            this.id   = element.Attribute("id").Value;

            this.cooperation =
                Convert.ToInt32(element.Attribute("cooperation").Value);

            string category = element.Attribute("category").Value;

            this.category = Utils.Convert(category);
        }