Linq extensions examplified

This commit is contained in:
2019-01-06 14:15:40 +01:00
parent 786b398e26
commit ba2e475f5b
7 changed files with 222 additions and 0 deletions

8
Linq_examples/Book.cs Normal file
View File

@ -0,0 +1,8 @@
namespace Linq_examples
{
public class Book
{
public string Title { get; set; }
public float Price { get; set; }
}
}