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.