This commit is contained in:
2023-08-03 13:23:50 +09:00
parent b3d721afbb
commit 8a3eb1fe6f
4 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LinqInNotIn
{
internal class Product
{
public int ProductId { get; set; }
public string Name { get; set; }
public Product(int id, string name)
{
this.ProductId = id;
this.Name = name;
}
}
}