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