// 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(); }
public NonRepeatingField(String rawText, Context context) { this._Value = rawText; this._Components = ComponentFactory.GetComponents(rawText, context).ToArray(); }