独自のカスタム コレクション タイプを作成したいと考えています。
私は自分のコレクションを次のように定義しています。
type A(collection : seq<string>) =
member this.Collection with get() = collection
interface seq<string> with
member this.GetEnumerator() = this.Collection.GetEnumerator()
しかし、これはコンパイルされませんNo implementation was given for 'Collections.IEnumerable.GetEnumerator()
どうすればいいですか?