Answer the question
In order to leave comments, you need to log in
Who gets Proliant 1600 as a gift?
I will give as a gift two Proliant'a 1600, rack. Not for scrap! They include a tape library, a set of cassettes. Everything is alive and working, there is no way to store it, and the hand does not rise to throw it away. Maybe someone has acquaintances in some museums, universities? Kyiv. Pickup, Tatarka region.
Answer the question
In order to leave comments, you need to log in
public IEnumerable<Product> Products => products.Values;
public IEnumerable<Product> Products() { return products.Values; }
This is a feature of C # 6.0, it allows you to declare properties for reading and methods through lambdas.
Before:
public string[] GetCountryList()
{
return new string[] { "Russia", "USA", "UK" };
}
public string[] GetCountryList() => new string[] { "Russia", "USA", "UK" };
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question