Click here to Skip to main content
15,881,172 members

Comments by rummer (Top 16 by date)

rummer 22-Mar-18 6:50am View    
I have tried till here then stuck -

var list = new List<string>();
//string strFileContent = string.Empty;


Dictionary<string, string> latestVersion = new Dictionary<string, string>();
using (StreamReader sr = new StreamReader(@"D:\input.txt"))
{
string Line;
while ((Line = sr.ReadLine()) != null)
{
//strFileContent += Line + ",";
list.Add(Line);
}
}
string str = string.Empty;
for (int i = 0; i <= list.Count; i++)
{
str = list[i].ToString();

string[] stt = str.Split(',');

for (int j = 0; j <= stt.Length; j++)
{


}
}
rummer 22-Mar-18 6:45am View    
CHill60 I tried but didn't get what I needed so posted here.
rummer 28-Dec-16 4:28am View    
I have checked with both MIME types but still coming warning....
rummer 8-Jan-15 4:41am View    
No. I have not used any static variables.
rummer 3-Jun-14 1:00am View    
I know this query but this is a single string like ('1,2,3')
can't do this type?