static void Main(string[] args){
var yourKeyword = "...Whatever";
var theObjectYouWant = this.cardDataList.FirstOrDefault(x => x.CardType.StartsWith(yourKeyword));
// the theObjectYouWant should contain the first match item or null in case of no match
Console.WriteLine(theObjectYouWant.CardType);
}