public class PricePublicModel
{
public PricePublicModel() { }
public int PriceGroupID { get; set; }
public double Size { get; set; }
public double Size2 { get; set; }
public int[] PrintType { get; set; }
public double[] Price { get; set; }
}
List<PricePublicModel> pricePublicList = new List<PricePublicModel>();
Öğesinin pricePublicList
belirli bir değer içerip içermediğini kontrol etme . Daha net olmak gerekirse, ben orada olup olmadığını kontrol etmek istiyor pricePublicModel.Size == 200
? Ayrıca, bu unsur varsa, hangisi olduğunu nasıl bilebilirim?
DÜZENLE Sözlük bunun için daha uygunsa Sözlük'ü kullanabilirim ama nasıl olduğunu bilmem gerekir :)