/// <summary> /// Convert <see cref="string"/> to nullable <see cref="uint"/>. /// </summary> /// <param name="str"></param> /// <returns></returns> public static uint?ToNullableUInt32(string str) => NumericConv.StringToNullableUInt32(str);