Web-Development-with-Blazor.../Chapter17/SourceGeneratorDemo/BlazorWebAssemblyApp/InterfaceGeneratorDemo/SampleService.cs
2023-02-17 15:28:17 +01:00

14 lines
271 B
C#

namespace BlazorWebAssemblyApp.InterfaceGeneratorDemo;
using InterfaceGenerator;
[GenerateAutoInterface]
public class SampleService: ISampleService
{
public double Multiply(double x, double y)
{
return x * y;
}
public int NiceNumber => 69;
}