cs11dotnet7/vs4win/Chapter11/LinqWithObjects/Program.Functions.cs

8 lines
111 B
C#
Raw Normal View History

2022-03-06 11:37:59 +01:00
partial class Program
{
static bool NameLongerThanFour(string name)
{
return name.Length > 4;
}
}