コード例 #1
0
 private static bool FromStringToNullableGuid(string from, out object result)
 {
     result = GuidConv.StringToNullableGuid(from);
     return(true);
 }
コード例 #2
0
 /// <summary>
 /// To nullable GUID
 /// </summary>
 /// <param name="str"></param>
 /// <returns></returns>
 public static Guid?CastToNullableGuid(this string str) => GuidConv.StringToNullableGuid(str);
コード例 #3
0
 /// <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);