diff --git a/websocket-sharp/Net/HttpListenerPrefixCollection.cs b/websocket-sharp/Net/HttpListenerPrefixCollection.cs
index b5b89354..4b47ed3b 100644
--- a/websocket-sharp/Net/HttpListenerPrefixCollection.cs
+++ b/websocket-sharp/Net/HttpListenerPrefixCollection.cs
@@ -199,27 +199,6 @@ namespace WebSocketSharp.Net
return _prefixes.Contains (uriPrefix);
}
- ///
- /// Copies the contents of the collection to the specified array.
- ///
- ///
- /// An that receives the URI prefix strings in
- /// the collection.
- ///
- ///
- /// An that specifies the zero-based index in
- /// the array at which copying begins.
- ///
- ///
- /// The instance associated with
- /// this collection is closed.
- ///
- public void CopyTo (Array array, int offset)
- {
- _listener.CheckDisposed ();
- ((ICollection) _prefixes).CopyTo (array, offset);
- }
-
///
/// Copies the contents of the collection to the specified array of string.
///