Do var Impact performance
As currently, I am working on optimisation to speed up the execution process.
As My code has lot of declaration like following
var lstProducts = dbSet.ToList();
Now if I change it to strongly type as following,
List<Product> lstProducts = dbSet.ToList();
do it impact the execution time. or CPU cost/compilation time or such or it do not make any sense?