internal APGenElementInformation(APGenElement owner, APGenPropertyInformation propertyInfo)
		{
			_propertyInfo = propertyInfo;
			_owner = owner;

			_properties = new APGenPropertyInformationCollection();
			foreach (APGenProperty prop in owner.Properties)
				_properties.Add(new APGenPropertyInformation(owner, prop));
		}
예제 #2
0
        internal APGenElementInformation(APGenElement owner, APGenPropertyInformation propertyInfo)
        {
            _propertyInfo = propertyInfo;
            _owner        = owner;

            _properties = new APGenPropertyInformationCollection();
            foreach (APGenProperty prop in owner.Properties)
            {
                _properties.Add(new APGenPropertyInformation(owner, prop));
            }
        }
			public APGenPropertyInformationEnumerator(APGenPropertyInformationCollection collection)
			{
				_collection = collection;
				_position = -1;
			}
예제 #4
0
 public APGenPropertyInformationEnumerator(APGenPropertyInformationCollection collection)
 {
     _collection = collection;
     _position   = -1;
 }