Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)
Answers
Answered by
14
Answer:
Step-by-step explanation:
On the first look, below line may throw an error:
TaxFieldID = new Guid(Alist .ToString ()),
Guid constructor does not accept array of strings, it accepts single string.
Hide Copy Code
Guid g = new Guid(Alist[0]);
Hope it helps you...
Answered by
3
what is the right questions....
Similar questions