Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 482 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 482 Bytes

Greeter

The Greeter example illustrates how to send a request and wait for the response.

You can build the client and server applications with:

dotnet build

First start the Server program:

cd Server
dotnet run

In a separate window, start the Client program:

cd Client
dotnet run

This is a concise example with minimal code. If you are looking for a more realistic example, see the GreeterLog example.