AssertTypeSafe() private method

Tests for type safety when accessing this value.
private AssertTypeSafe ( GribValueType requestedType ) : void
requestedType GribValueType The expected type.
return void
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }