using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Data.Linq; using System.Linq; using System.Xml; using System.Text;
namespace ConsoleApplication1 { class Program {
static void Main(string[] args)
{
Console.WriteLine();
Console.WriteLine("Good day! How are you? I will compare the Values between Source and CRML Files");
Console.WriteLine("Please enter your the Reference Number you want to Check :- ");
string Refcheck = System.Console.ReadLine();
XmlTextReader textReader = new XmlTextReader("e:\\END.crml");
int f = 0;
int n = 0;
while (textReader.Read())
{
XmlNodeType nType = textReader.NodeType;
switch (textReader.NodeType)
{
case XmlNodeType.Text: //Display the text in each element.
if (textReader.Value == Refcheck)
{
f = ++f;
}
else
if (textReader.Value != Refcheck)
{
n = ++n;
}
break;
}
}
if (f == 1)
{
Console.WriteLine(textReader.Value + " was found in the Target File(CRML FILE)");
}
else
{
Console.WriteLine(Refcheck + " was NOT Found, Does not Exit in CRML");
}
textReader.Close();
Console.WriteLine();
Console.WriteLine("===================================================================");
Console.WriteLine("Enter SAME Reference Number to check the CSV:- ");
string refcheck = Console.ReadLine();
int c = 0;
DataClasses1DataContext dbcontext = new DataClasses1DataContext();
var reference = from e in dbcontext.RCFs select e;
foreach (RCF e in reference)
{
if (e.Reference == refcheck)
{
c = ++c;
//Console.WriteLine("Reference Exist in Source (CSV):- Reference: {0} ,Counterparty: {1} ", e.Reference, e.Counterparty);
}
if (c > 0)
{
Console.WriteLine("Reference Found in CSV File");
}
else
{
Console.WriteLine("Reference not found in the CSV File");
}
Console.WriteLine();
Console.WriteLine("Press Enter to exit....");
Console.ReadLine();
break;
}
}
}
}
