public static String Ethereum()
{
WebClient wc = new WebClient();
String Response = wc.DownloadString("https://bankiros.ru/crypto/ethereum");
String Rate = Regex.Match(Response, @"<div class=""crypto_curr_val""> ([0-9]+\.[0-9]+)</div>").Groups[1].Value;
Console.WriteLine(Rate);
return "Ethereum:" + Rate + "\r\n";
}
public static void Main(string[] args)
{
Console.WriteLine(Ethereum());
}