The new features in .NET 9 (C# 13)
Index Method
foreach ((int index, Product product) in ProductList.Products.Index())
{
Console.WriteLine($"Index = {index}, Name = {product.Title}");
}
SearchValues (This feature was introduced in .NET 8)
In .NET 8, the SearchValues type is limit...
blog.tuando.app1 min read