I have a string in this format:
"object": "Board-f330c10a-a9eb-4253-b554-43ed95c87242"
and I want to extract guid from it.I was trying like this:
Guid.Parse(followActivity.Object.Split('-').Skip(1).FirstOrDefault());
but it takes only the first part of the guid string. How can I extract whole guid?
Can anybody help.