PclUnit.Run.Runner.ToListJson C# (CSharp) Method

ToListJson() public method

public ToListJson ( ) : string
return string
        public string ToListJson()
        {
            return String.Format("{{Platform:\"{1}\", Assemblies:[{0}]}}",
                          String.Join(",", Assemblies.Select(it => it.ToListJson()).ToArray()), Platform);
        }