Beispiel #1
0
        public static Guid GetGuidMandatory(this IXLCell cell)
        {
            var value = cell.GetGuidOrDefault();

            if (value.Empty() || value.HasValue == false)
            {
                ThrowValueExpectedException <Guid>(cell);
            }

            return(value.Value);
        }
Beispiel #2
0
 public Guid?GetGuidOrDefault()
 {
     return(_cell.GetGuidOrDefault());
 }