मेरे पास यह कोड था:
String[] lineElements;
. . .
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
lineElements = line.Split(',');
. . .
लेकिन फिर सोचा कि शायद मुझे इसके बजाय एक सूची के साथ जाना चाहिए। लेकिन यह कोड:
List<String> listStrLineElements;
. . .
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
listStrLineElements = line.Split(',');
. . .
... मुझे देता है, " स्पष्ट रूप से टाइप नहीं कर सकता 'स्ट्रिंग []' को 'System.Collections.Generic.ist" "