public static List<string> priceList= new List<string>()
{
"f,2200","l,1999","s,2000","y,1599"
};
public static void Main(string[] args)
{
sortByPrice();
}
public static void sortByPrice(){
}
Read more here: https://stackoverflow.com/questions/65719665/can-any-one-to-sort-the-list-based-on-price-provided-in-list-using-linq
Content Attribution
This content was originally published by qqqq at Recent Questions - Stack Overflow, and is syndicated here via their RSS feed. You can read the original post over there.