private static bool FromStringToNullableGuid(string from, out object result) { result = GuidConv.StringToNullableGuid(from); return(true); }
/// <summary> /// To nullable GUID /// </summary> /// <param name="str"></param> /// <returns></returns> public static Guid?CastToNullableGuid(this string str) => GuidConv.StringToNullableGuid(str);
/// <summary> /// Convert <see cref="string"/> to nullable <see cref="Guid"/> /// </summary> /// <param name="str"></param> /// <returns></returns> public static Guid?ToNullableGuid(string str) => GuidConv.StringToNullableGuid(str);