Web-Development-with-Blazor.../Chapter17/SourceGeneratorDemo/BlazorWebAssemblyApp/InterfaceGeneratorDemo/SampleService.cs

14 lines
271 B
C#
Raw Normal View History

2023-02-17 15:28:17 +01:00
namespace BlazorWebAssemblyApp.InterfaceGeneratorDemo;
using InterfaceGenerator;
[GenerateAutoInterface]
public class SampleService: ISampleService
{
public double Multiply(double x, double y)
{
return x * y;
}
public int NiceNumber => 69;
}