public void SetFormatItem(FormatItemType type, params string[] args) { _itemType = type; if (args.Length > 0) { if (args[0].Trim().Length > 0) { if (type == FormatItemType.String) { _formatStringValue = args[0]; } else { _formatParser = args[0]; for (int i = 1; i < args.Length; i++) { Args.Add(args[i]); } } } } }
public FormatItem(FormatItemType type, params string[] args) { SetFormatItem(type, args); }
public FormatItem() { _itemType = FormatItemType.String; _formatStringValue = ""; }