を使用してブール結果を取得するallIngred
の中にピザの成分が存在する場合、結果はLINQを使用してtrue
になります。これをどうやってやりますか?LinQコード
string[] allIngred = {
"oil", "yeast", "wheat-flour", "salt", "oil", "baking-powder",
"wheat-flour", "salt", "sugar", "milk"
};
string[] pizza = { "oil", "yeast", "wheat-flour", "salt" };