|
|
@ -1,4 +1,5 @@ |
|
|
|
using System; |
|
|
|
using IPA.Utilities; |
|
|
|
using System; |
|
|
|
using System.Collections; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Linq; |
|
|
@ -112,7 +113,7 @@ namespace IPA.Config.Data |
|
|
|
/// </summary>
|
|
|
|
/// <returns>a comma-seperated list of the result of <see cref="Value.ToString"/> wrapped in square brackets</returns>
|
|
|
|
public override string ToString() |
|
|
|
=> $"[{string.Join(",",this.Select(v => v.ToString()))}]"; |
|
|
|
=> $"[{string.Join(",",this.Select(v => v.ToString()).StrJP())}]"; |
|
|
|
|
|
|
|
IEnumerator IEnumerable.GetEnumerator() => ((IList<Value>)values).GetEnumerator(); |
|
|
|
} |
|
|
|