Hello everyone,
While running the Webshop project in C# then there is one problem stating that
Cannot convert method group 'NewGuid' to non-delegate type 'System.Guid'. Did you intend to invoke the method?
this problem is found in the
App_Code\BusinessLogic\OrderedProduct.cs file.
The source code for that particular error is as
Code:
public class OrderedProduct
{
#region "Private Variables"
private Guid _id = Guid.NewGuid;
private Product _theProduct;
code goes on..........
}
Any help is most appreciated to sort out the problem.....