using System.Collections.Generic;
public static void Main(string[] args)
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);
Root palindromes = JsonConvert.DeserializeObject<Root>(json);
foreach (Palindromes pals in palindromes.Strings)
Console.WriteLine(pals.str);
public List<Palindromes> Strings { get; set; }
public string str { get; set; }
public string result { get; set; }
public static bool IsPalindrome(string value)
int max = value.Length - 1;
if (char.ToLower(a) != char.ToLower(b))