12
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
Predicate<string> isUpper = delegate(string s) { return s.Equals(s.ToUpper());};
8
bool result = isUpper("hello world!!");
9
10
Console.Write(result);
11
}
12
}
Cached Result
https://www.technologycrowds.com/favicon.ico