예제 #1
0
파일: LookUp.cs 프로젝트: balu92/Fougerite
 internal DeployedRespawn[] Filter(DeployedRespawn[] bedsnbags, string[] id)
 {
     return (from b in bedsnbags
                 where id.Contains(b.ownerID.ToString())
                 select b).ToArray<DeployedRespawn>();
 }
예제 #2
0
파일: LookUp.cs 프로젝트: balu92/Fougerite
 internal DeployedRespawn[] Filter(DeployedRespawn[] bedsnbags, string id)
 {
     return (from b in bedsnbags
                 where b.ownerID.ToString() == id
                 select b).ToArray<DeployedRespawn>();
 }