示例#1
0
        // TODO: Should this make an empty Array of Fields?
        // ... or just leave Fields null?

        public FieldItem(String rawText, Context context)
        {
            this._Value      = rawText;
            this._Components = ComponentFactory.GetComponents(rawText, context).ToArray();
        }
示例#2
0
 public NonRepeatingField(String rawText, Context context)
 {
     this._Value      = rawText;
     this._Components = ComponentFactory.GetComponents(rawText, context).ToArray();
 }