Strings.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. namespace System
  2. {
  3. internal static partial class SR
  4. {
  5. public static string Arg_NonZeroLowerBound => @"The lower bound of target array must be zero.";
  6. public static string Arg_WrongType => @"The value '{0}' is not of type '{1}' and cannot be used in this generic collection.";
  7. public static string Arg_ArrayPlusOffTooSmall => @"Destination array is not long enough to copy all the items in the collection. Check array index and length.";
  8. public static string ArgumentOutOfRange_NeedNonNegNum => @"Non-negative number required.";
  9. public static string ArgumentOutOfRange_SmallCapacity => @"capacity was less than the current size.";
  10. public static string Argument_InvalidOffLen => @"Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.";
  11. public static string Argument_AddingDuplicate => @"An item with the same key has already been added. Key: {0}";
  12. public static string InvalidOperation_ConcurrentOperationsNotSupported => @"Operations that change non-concurrent collections must have exclusive access. A concurrent update was performed on this collection and corrupted its state. The collection's state is no longer correct.";
  13. public static string InvalidOperation_EmptyQueue => @"Queue empty.";
  14. public static string InvalidOperation_EnumOpCantHappen => @"Enumeration has either not started or has already finished.";
  15. public static string InvalidOperation_EnumFailedVersion => @"Collection was modified; enumeration operation may not execute.";
  16. public static string InvalidOperation_EmptyStack => @"Stack empty.";
  17. public static string InvalidOperation_EnumNotStarted => @"Enumeration has not started. Call MoveNext.";
  18. public static string InvalidOperation_EnumEnded => @"Enumeration already finished.";
  19. public static string NotSupported_KeyCollectionSet => @"Mutating a key collection derived from a dictionary is not allowed.";
  20. public static string NotSupported_ValueCollectionSet => @"Mutating a value collection derived from a dictionary is not allowed.";
  21. public static string Arg_ArrayLengthsDiffer => @"Array lengths must be the same.";
  22. public static string Arg_BitArrayTypeUnsupported => @"Only supported array types for CopyTo on BitArrays are Boolean[], Int32[] and Byte[].";
  23. public static string Arg_HSCapacityOverflow => @"HashSet capacity is too big.";
  24. public static string Arg_HTCapacityOverflow => @"Hashtable's capacity overflowed and went negative. Check load factor, capacity and the current size of the table.";
  25. public static string Arg_InsufficientSpace => @"Insufficient space in the target location to copy the information.";
  26. public static string Arg_RankMultiDimNotSupported => @"Only single dimensional arrays are supported for the requested action.";
  27. public static string Argument_ArrayTooLarge => @"The input array length must not exceed Int32.MaxValue / {0}. Otherwise BitArray.Length would exceed Int32.MaxValue.";
  28. public static string Argument_InvalidArrayType => @"Target array type is not compatible with the type of items in the collection.";
  29. public static string ArgumentOutOfRange_BiggerThanCollection => @"Must be less than or equal to the size of the collection.";
  30. public static string ArgumentOutOfRange_Index => @"Index was out of range. Must be non-negative and less than the size of the collection.";
  31. public static string ExternalLinkedListNode => @"The LinkedList node does not belong to current LinkedList.";
  32. public static string LinkedListEmpty => @"The LinkedList is empty.";
  33. public static string LinkedListNodeIsAttached => @"The LinkedList node already belongs to a LinkedList.";
  34. public static string NotSupported_SortedListNestedWrite => @"This operation is not supported on SortedList nested types because they require modifying the original SortedList.";
  35. public static string SortedSet_LowerValueGreaterThanUpperValue => @"Must be less than or equal to upperValue.";
  36. public static string Serialization_InvalidOnDeser => @"OnDeserialization method was called while the object was not being deserialized.";
  37. public static string Serialization_MismatchedCount => @"The serialized Count information doesn't match the number of items.";
  38. public static string Serialization_MissingKeys => @"The keys for this dictionary are missing.";
  39. public static string Serialization_MissingValues => @"The values for this dictionary are missing.";
  40. public static string Arg_KeyNotFoundWithKey => @"The given key '{0}' was not present in the dictionary.";
  41. }
  42. }