DotnetTestLib/DotnetTestLib/HelloWorldProvider.cs
2024-11-27 20:09:05 +00:00

17 lines
296 B
C#

namespace DotnetTestLib;
public class HelloWorldProvider
{
public string GetHelloWorld(string? name = null)
{
if (string.IsNullOrEmpty(name))
{
return "Hello world!";
}
else
{
return $"Hello, {name}!";
}
}
}