Posts by Renan Almeida • 31 points
2 posts
-
3
votes1
answer56
viewsA: Rounded number
You can use the number_format for this operation, thus will appear the decimal places after the comma. For example: number_format ( float $number [, int $decimals ] ) : string number_format ( float…
-
0
votes1
answer50
viewsA: Injecting Iconfiguration into Controller in Webapi project
Good afternoon! I believe it’s in those lines: public class Startup { private Container _container { get; set; } public IConfiguration Configuration { get; } Try switching to the code below: public…