Validate VCID

Hello,

may someone has a robust method for check if string is vcid or does VC provide this already somewhere in public API, like:

Maybe there is an faster approach?

Thx & Regards
Feature

I think they are just GUIDs, so you can use the .NET Guid struct or Python uuid module to operate on them.

https://docs.python.org/2/library/uuid.html

Edit. Somehow though this was Python question at a glance, added mention about the .NET solution :smiley:

Hy,

oh jeah thats great, then should Guid.TryParse() do the thing.

Thx & Regards
Feature