mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-06 14:53:47 +00:00
7 lines
111 B
C#
7 lines
111 B
C#
partial class Program
|
|
{
|
|
static bool NameLongerThanFour(string name)
|
|
{
|
|
return name.Length > 4;
|
|
}
|
|
}
|