vote up -5 vote down star

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;
        }

    }
}

}

flag
3  
Do you stuck at a specific point or do you just want us to do your job? – J. Random Coder Nov 6 at 10:18
2  
You don't seem to have asked a question... – Robin Day Nov 6 at 10:19
2  
I think the question is "can you do it for me?" – zeocrash Nov 6 at 10:24

closed as not a real question by Robin Day, thephpdeveloper, Lucero, Stefan Steinegger, Naveen Nov 6 at 10:34

2 Answers

vote up 0 vote down

http://forums.asp.net/t/1224617.aspx

it's from vbscript to c# but i think you should be able to work it out in reverse

link|flag
vote up 2 vote down

Please see: Convert snippet from c# to vbscript

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.