1
0

Strings.cs 404 B

123456789
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. namespace System.Linq
  3. {
  4. internal static class Strings
  5. {
  6. public static string NO_ELEMENTS = "Source sequence doesn't contain any elements.";
  7. public static string MORE_THAN_ONE_ELEMENT = "Source sequence contains more than one element.";
  8. }
  9. }