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

10 lines
113 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;
}
}