using System; namespace Chernobyl.Extensions { /// /// Extensions for the type. /// public static class GuidExtensions { /// /// Converts a to a . /// /// The instance to convert. /// The converted instance. public static Guid ToGuid(this string str) { return new Guid(str); } } }