- 01
 - 02
 - 03
 - 04
 - 05
 - 06
 - 07
 - 08
 - 09
 - 10
 - 11
 - 12
 - 13
 - 14
 - 15
 - 16
 
                        string pars_param(string data) 
        {
            HtmlAgilityPack.HtmlDocument html = new HtmlAgilityPack.HtmlDocument();
            html.LoadHtml(data);
            HtmlNodeCollection qw = html.DocumentNode.SelectNodes(@"//input[@name=""k""]");
            if (qw != null)
            {
                foreach (HtmlNode n in qw)
                {
                    if (n.Attributes["value"] != null)
                    {
                        return n.Attributes["value"].Value;
                    }
                }
            }
        }
                                     
        
            Error	1	'trcli.Form1.pars_param(string)': not all code paths return a value	D:\zMyDoc\igl\Documents\Visual Studio 2013\Projects\trcli\trcli\Form1.cs	651	16	trcli
не магу разобраться в своем говнокоде, не хочет возвращать n.Attributes["value"].Value