LynnaLab.StringFileComponent.StringFileComponent C# (CSharp) Method

StringFileComponent() public method

public StringFileComponent ( FileParser parser, string s, IList spacing ) : System
parser FileParser
s string
spacing IList
return System
        public StringFileComponent(FileParser parser, string s, IList<int> spacing)
            : base(parser, spacing)
        {
            str = s;
            if (this.spacing == null)
                this.spacing = new List<int>();
            while (this.spacing.Count < 2)
                this.spacing.Add(0);
        }