コード例 #1
0
ファイル: EntryPoint.cs プロジェクト: Ivorankov/DSA
        private static Product GenerateProduct()
        {
            var name = "GenericProduct";
            var price = rnd.Next(150);
            var newProduct = new Product(name, price);

            return newProduct;
        }
コード例 #2
0
ファイル: Product.cs プロジェクト: Ivorankov/DSA
 public int CompareTo(Product other)
 {
     return this.Price - other.Price;
 }