C#Console.WriteLine()

C# Console.WriteLine()

因此,我将此代码写入 json 文件中的 运行 字符串值,并确定它是否为回文。我无法在控制台中正确显示结果。我的 Console.WriteLine 是问题所在(我认为)。它显示 true/false 答案,但我需要实际的字符串与它一起出现。例如:"mom: true'。表示它是一个回文。有什么提示吗?

using System;
using System.Collections.Generic;
using System.Net;
using Newtonsoft.Json;
using System.Linq;

public class Program
    {
    public static void Main(string[] args)
    {
     //receive json from url
        WebClient webClient = new WebClient();
        WebClient n = new WebClient();
        var json = n.DownloadString("https://raw.githubusercontent.com/bungard/PalindromeTest/master/string.json");
        string valueOriginal = Convert.ToString(json);

        //parse
        Root palindromes = JsonConvert.DeserializeObject<Root>(json);
        foreach (Palindromes pals in palindromes.Strings)
        {

          Console.WriteLine(pals.result = IsPalindrome(pals.str).ToString());**
        }


    }
    public class Root
    {
        public List<Palindromes> Strings { get; set; }
    }

    public class Palindromes
    {
        public string str { get; set; }
        public string result { get; set; }
    }



    public static bool IsPalindrome(string value)
    {
        char[] forwards = (from c in value.ToLower().ToCharArray() where char.IsLetter(c) select c).ToArray();
        int middle = (forwards.Length / 2) + 1;
        for (int i = 0; i < middle; i++)
            if (forwards[i] != forwards[forwards.Length - 1 - i])
                return false;
        return true;
    }
}

你应该没问题:

pals.result = IsPalindrome(pals.str).ToString();
Console.WriteLine($"{pals.str}: {pals.result}");