1
0

Strings.cs 554 B

12345678910111213
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT License.
  3. // See the LICENSE file in the project root for more information.
  4. namespace System
  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. }