how to show a first item in a combobox in csharp winforms

Code Example - how to show a first item in a combobox in csharp winforms

                
                        var item = ChunkList.SingleOrDefault(x => x.UniqueId == ChunkID);
if (item != null)
    ChunkList.Remove(item);