StringCollection.cs 410 B

12345678910111213
  1. using System.Collections;
  2. using System.Runtime.InteropServices;
  3. namespace WinSCP
  4. {
  5. [Guid("E402CB1F-6219-4C79-9EDF-1914D9589909")]
  6. [ClassInterface(Constants.CollectionClassInterface)]
  7. [ComVisible(true)]
  8. [ComDefaultInterface(typeof(IEnumerable))] // See the comment at ReadOnlyInteropCollection
  9. public class StringCollection : ReadOnlyInteropCollection<string>
  10. {
  11. }
  12. }