using System.Collections.Generic;
public static void Main()
var list = MY_LIST.GET_LISTS();
for(i = 0; i < list.Count; i++){
if (list[i].Location == "Test Location"){
Console.WriteLine("LIST_ONE has an item named: " + list[i].Name + " with a location of: " + list[i].Location);
public string Name {get;set;}
public string Location {get;set;}
public ITEM(string Name, string Location){
this.Location = Location;
public static List<ITEM> GET_LISTS(){
List<ITEM> LIST_ONE = new List<ITEM>();
var List_Item_1 = new ITEM("Test Name", "Test Location");
LIST_ONE.Add(List_Item_1);
var item2 = new ITEM("Natriumz", "12345");