Predicate<string> isUpper = delegate (string s) { return s.Equals(s.ToUpper()); }; bool result = isUpper("hello world!!"); Console.WriteLine("Predicate Delegate "+result);