asked on
public class OrderBlock
{
public string BlockID { get; set; }
public int NumFails { get; set; }
public List<Orders> OrderList { get; set; }
public List<Orders> OrderListFailed { get; set; }
}
public class Orders
{
public bool Failed { get; set; }
public string Name { get; set; }
public string ID { get; set; }
public string Side { get; set; }
public double Amount { get; set; }
public bool GoodOrder { get; set; }
}
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
TRUSTED BY