Getting index of a String in list

I just need to get the index of a certain string in my list. I am currently using ListName.GetIndex(String) but it tells me that best overload for the method is not compatible with the argument(string). I cannot figure out why this is happening and would really appreciate some help.

Cheers

int index = list.IndexOf(value);