ServiceModelStrings.cs 372 B

1234567891011
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. abstract class ServiceModelStrings
  7. {
  8. public abstract int Count { get; }
  9. public abstract string this[int index] { get; }
  10. }
  11. }