using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.Procedures
{
///
/// Represents an array parsing style.
///
public enum ArrayParsingStyle
{
///
/// Formats the array separated by commas. (e.g 1,2,3,4...)
///
Comma,
///
/// Each item enclosed in square brackets. (e.g [1] [2] [3]...)
///
SquareBrackets,
}
}