Strings.cs 565 B

123456789101112
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. namespace System.Linq
  5. {
  6. internal static class Strings
  7. {
  8. public static string NO_ELEMENTS = "Source sequence doesn't contain any elements.";
  9. public static string MORE_THAN_ONE_ELEMENT = "Source sequence contains more than one element.";
  10. public static string NOT_SUPPORTED = "Specified method is not supported.";
  11. }
  12. }