HttpResponseMessage response = await client.PutAsJsonAsync($"api/products/{product.Id}", product);
In the above code I've been using the $ keyword but I don't the significance of this keyword. I searched in google but coiuldn't find proper answer. I think this might be a duplicate but couldn't find relative answer even in stackexchange.
Thanks in advance