Okay I am hoping you all can point me in the correct direction. I am new to the whole C#, .NET stuff but here we go. I have an app that gets a listing of files, and then uses a streamreader to find a specific line in the file and adds this along with the UNC to the filename to an arraylist.
My problem is this:
I get it to display the information in the format of:
fieldA-fieldB,\\server share\filename
The problem I am trying to resolve is that there can be duplicates in this list for FieldA and B. I need to find all the files that have the same fieldA and B in the list and display them. The differing filenames is what is holding me up I believe.
Has anyone run across anything that might help me out? Google is your friend, but you have to know what to google first ;)
Any help would be GREATLY appreciated!
My problem is this:
I get it to display the information in the format of:
fieldA-fieldB,\\server share\filename
The problem I am trying to resolve is that there can be duplicates in this list for FieldA and B. I need to find all the files that have the same fieldA and B in the list and display them. The differing filenames is what is holding me up I believe.
Has anyone run across anything that might help me out? Google is your friend, but you have to know what to google first ;)
Any help would be GREATLY appreciated!
Comment