I created a List using a class
public static List<Holding_Class> Holding { get; set; }
Here is my class
class Holding_Class
{
public string Key { get; set; }
public string RealID { get; set; }
public string URL { get; set; }
}
When I do a for loop on the class i try to reference key and a string and pass it into a void and all I get is System.Object as the string text. What Can I do to get Key's real text.
for (int i = 0; i < Holding.Count; i++)
{
Process_HTML(htmlResultString,Holding[i].Key.ToString();
}
"System.Object[]" is the result from Holding[i].Key.ToString(). When i'm in debug I can see the real value.
here is Process_HTML
public static void Process_HTML(string HTML, string key)
{
//do mysql work
Console.WriteLine(key);
}
It's nothing more then that
Here is the population
foreach (DataRow realDtRow in Real.Rows)
{
Holding_Class Hold = new Holding_Class
{
Key = dtRow.ItemArray.ToString(),
Real = realvinDtRow.ItemArray[0].ToString(),
URL = realvinDtRow.ItemArray[0].ToString()
};
Holding.Add(Hold);
}
ToStringon an object which is already a string !? – Sayem Ahmed Mar 18 '12 at 19:00Key? It looks like you're.ToString()ing an array and putting the result inKey. – dlev Mar 18 '12 at 19:01