Encapsulates logic for encoding and decoding a value within a GRIB message.
Пример #1
0
 /// <summary>
 /// Tests for type safety when accessing this value.
 /// </summary>
 /// <param name="expectedType">The expected type.</param>
 private void AssertTypeSafe(GribValueType expectedType)
 {
     GribValue.AssertTypeSafe(Key, expectedType, NativeType);
 }
Пример #2
0
 /// <summary>
 /// Tests for type safety when accessing this value.
 /// </summary>
 /// <param name="requestedType">The expected type.</param>
 private void AssertTypeSafe(GribValueType requestedType)
 {
     GribValue.AssertTypeSafe(Key, requestedType, NativeType);
 }