Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Xml;
- using TestWebService.Cbrf;
- namespace TestWebService
- {
- class Program
- {
- static void Main(string[] args)
- {
- var di = new DailyInfo();
- var curs = di.GetCursOnDateXML(DateTime.Today);
- foreach (XmlNode node in curs.ChildNodes)
- Console.WriteLine(node["Vnom"].InnerText + " "
- + node["Vname"].InnerText.Trim() + " = "
- + node["Vcurs"].InnerText + " руб.");
- Console.ReadLine();
- }
- }
- }
Add Comment
Please, Sign In to add comment