In Visual Studio when debugging C# code, can I export a List or a Dictionary in xml,csv or text format easily?

后端 未结 4 1346
执笔经年
执笔经年 2021-01-17 07:19

In Visual Studio when debugging C# code, can I export a Dictionary in xml,csv or text format easily?

I would like to export a

相关标签:
4条回答
  • 2021-01-17 08:07

    You can add a watch to your Dictionary (or List), then under the Watch Window you can then expand the entire dictionary (or List), right click, select-all, copy

    Then in Excel you can paste the data and it should auto-format:

    You could also just paste this data directly into another text-editor (or just view the data directly in the watch window too).

    Hope that can help.

    0 讨论(0)
  • 2021-01-17 08:15

    Dictionary<TKey, TValue> implements IEnumerable<KeyValuePair<TKey, TValue>>. For debugging purposes, you can convert dictionary to multiline string using LINQ query:

    string description =
        string.Join(Environment.NewLine,
            dict.Select(tuple => $"{tuple.Key} => {tuple.Value}").ToArray());
    

    Maybe this will be enough for debugging.

    0 讨论(0)
  • 2021-01-17 08:19

    You could use a simple snippet like this:

    var output = dict.Select(kv => string.Format("{0},{1}", kv.Key, kv.Value));
    File.WriteAllLines("output.csv", output);
    

    As noted in the comments, if your dictionary keys or values contain any commas or newlines, you'll need something slightly more complex to generate valid a CSV file.

    0 讨论(0)
  • 2021-01-17 08:24

    Use The Immediate Window

    Don't underestimate the power of the immediate window for this kind of thing.

    My advice is to add an extension method to Dictionary which creates your csv file, then, in the Immediate window, you can call it whenever and wherever you need.

    public static class DictionaryExtensions
    {
        public static string ToCsvFormat<TK,TV>(this IDictionary<TK,TV> dict)
        {
            var sw = new StringWriter();
            foreach(var kv in dict)
            {
                sw.WriteLine($"{kv.Key}, {kv.Value}");
            }
            return sw.ToString();
        }
    }
    

    Here's a C# fiddle of the extension method in action:

    https://dotnetfiddle.net/f8xQjs

    And to use it in the immediate window:

    foo.ToCsvFormat(),nq
    

    the ",nq" option causes it to properly handle multi-lines. Then you can copy/paste from the immediate window and you're good to go.

    0 讨论(0)
提交回复
热议问题