SyntaxFix
Write A Post
Hire A Developer
Questions
To extend answers above, you cannot use Guid default value with Guid.Empty as an optional argument in method, indexer or delegate definition, because it will give you compile time error. Use default(Guid) or new Guid() instead.
Guid.Empty
default(Guid)
new Guid()