I have a following classes Entitities.cs and Temp.cs
Public class Entitities
{
public int Id { get; set; }
public string Name { get; set; }
public string Group { get; set; }
public string Image { get; set; }
public string Colour { get; set; }
public string Style { get; set; }
public int x { get; set; }
public int y { get; set; }
public List<Temp> Attributes { get; set; }
}
public class Temp
{
public Temp(string name, string val)
{
this.Name = name;
this.Value = val;
}
public Temp()
{
// TODO: Complete member initialization
}
public string Name { get; set; }
public string Value { get; set; }
}
I am trying to read csv file and convert ...
Go to the complete details ...