C # WinForm Determines whether the current parameter value is consistent with the value in the node

Source: Internet
Author: User

public static bool Checkvalues (string isscreenshot, String screenshottime, String screenshotsavepath)
{
Try
{
BOOL Flage = false;
DataTable dt = Returntbbyreradxml (BasePath, "screenshot");
if (dt! = NULL)
{
for (int i = 0; i < dt. Rows.Count; i++)
{
if (dt. rows[i]["Isscreenshot"]. ToString () = = Isscreenshot)
{
if (dt. rows[i]["Screenshottime"]. ToString () = = Screenshottime)
{
if (dt. rows[i]["Screenshotsavepath"]. ToString () = = Screenshotsavepath)
{
Flage = true;
Break
}
}
}
}
return flage;


}
Else
{
return flage;


}
}
Catch
{
return false;
}

}




public static DataTable Returntbbyreradxml (String filename,string NodeName)
{
Try
{
DataSet ds = new DataSet ();
DataTable dt = new DataTable ();
if (file.exists (fileName))
{
Ds. READXML (FileName);
if (ds = = null)
{
return null;
}
Else
{
DT = ds. Tables[nodename];
Return dt. Copy ();
}
}
Else
{
return null;
}
}
Catch
{
return null;
}
}

BasePath------------File Store Road strength

Isscreenshot, Screenshottime, Screenshotsavepath, filename,nodename-----------------------node name

C # WinForm Determines whether the current parameter value is consistent with the value in the node

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.