4
क्या सतह पर दिखने की तुलना में लिनिक अधिक कुशल है?
अगर मैं कुछ ऐसा लिखूं: var things = mythings .Where(x => x.IsSomeValue) .Where(y => y.IsSomeOtherValue) क्या यह इस प्रकार है: var results1 = new List<Thing>(); foreach(var t in mythings) if(t.IsSomeValue) results1.Add(t); var results2 = new List<Thing>(); foreach(var t in results1) if(t.IsSomeOtherValue) results2.Add(t); या इस तरह से काम करने वाले कवर्स …