File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ public object GetValue (int index)
354
354
"Index has to be between upper and lower bound of the array." ) ) ;
355
355
356
356
if ( GetType ( ) . GetElementType ( ) . IsPointer )
357
- throw new NotSupportedException ( "Type is not supported" ) ;
357
+ throw new NotSupportedException ( "Type is not supported. " ) ;
358
358
359
359
return GetValueImpl ( index - lb ) ;
360
360
}
@@ -382,7 +382,7 @@ public void SetValue (object value, int index)
382
382
"Index has to be >= lower bound and <= upper bound of the array." ) ) ;
383
383
384
384
if ( GetType ( ) . GetElementType ( ) . IsPointer )
385
- throw new NotSupportedException ( "Type is not supported" ) ;
385
+ throw new NotSupportedException ( "Type is not supported. " ) ;
386
386
387
387
SetValueImpl ( value , index - lb ) ;
388
388
}
@@ -735,7 +735,7 @@ public Object Current {
735
735
get {
736
736
if ( _index < 0 ) throw new InvalidOperationException ( SR . InvalidOperation_EnumNotStarted ) ;
737
737
if ( _index >= _endIndex ) throw new InvalidOperationException ( SR . InvalidOperation_EnumEnded ) ;
738
- if ( _index == 0 && _array . GetType ( ) . GetElementType ( ) . IsPointer ) throw new NotSupportedException ( "Type is not supported" ) ;
738
+ if ( _index == 0 && _array . GetType ( ) . GetElementType ( ) . IsPointer ) throw new NotSupportedException ( "Type is not supported. " ) ;
739
739
return _array . GetValueImpl ( _index ) ;
740
740
}
741
741
}
You can’t perform that action at this time.
0 commit comments