I have this code, where `p_entry' is a struct containing a string.

Code:
public static void AddEntryToPlaylist(ref p_entry pEntry)
{
	lstPlaylist.Items.Add(pEntry.name);
}
I get this error regarding the line in the body of the function:
mp3pro_3.MainForm.lstPlaylist' denotes a 'field' where a 'class' was expected
The MSDN says this: error CS0118


I can't make sense of it... can anyone help?