【C#】Where(it => it is Xxx).Select(it => it as Xxx)って書かず、OfType使おう!【LINQ】
UnityEngine.Object[] selectingObjects = Selection.objects;
Texture2D[] textures = selectingObjects
.Where(it => it is Texture2D)
.Select(it => it as Texture2D)
.ToArray();
このコードでは、Where
でTexture2Dなインスタンスだけになるよう選択して、Select
の中で要素をキャストして射影していますね。
実はWhere
とSelect
二つのメソッドを書かずとも、C#ではOfType
メソッド一つを使って次のように簡潔に書くことが可能です。
UnityEngine.Object[] selectingObjects = Selection.objects;
Texture2D[] textures = selectingObjects
.OfType<Texture2D>() // WhereとSelect二つもいらない、OfTypeでOK
.ToArray();
このように、OfType
メソッド使えば、もとのシーケンス(IEnumerable<UnityEngine.Object>
)に型引数を指定して、Texture2Dのインスタンスのみのシーケンス、IEnumerablet<Texture2D>
にすることができます。
Where(it => it is Xxx).Select(it => it as Xxx)
って書かずに、OfType
使いましょう!!!
Author And Source
この問題について(【C#】Where(it => it is Xxx).Select(it => it as Xxx)って書かず、OfType使おう!【LINQ】), 我々は、より多くの情報をここで見つけました https://qiita.com/RyotaMurohoshi/items/c82a20e261dd0682e1d4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .