Esempio n. 1
0
        //public void AddField(ZCFieldInfo zmc)
        //{
        //    _ZCompilingFields.Add(zmc);
        //}

        public ZCPropertyInfo DefinePropertyPublic(string PropertyName)
        {
            var ZPropertyCompiling = new ZCPropertyInfo();

            //PropertyName = NameToken.Text;
            //   this.ClassContext.AddPropertyName(PropertyName);
            ZPropertyCompiling.ZPropertyZName = PropertyName;
            //   this.ClassContext.AddMember(ZPropertyCompiling);
            _ZCompilingPropertys.Add(ZPropertyCompiling);
            return(ZPropertyCompiling);
        }
Esempio n. 2
0
 public void AddProperty(ZCPropertyInfo zmc)
 {
     _ZCompilingPropertys.Add(zmc);
 }