royalapplications / beyondnet

A toolset that makes it possible to call .NET code from other programming languages, including C, Swift and Kotlin.
https://royalapps.com
MIT License
111 stars 5 forks source link

Make System.Array conform to Swift's MutableCollection #66

Closed lemonmojo closed 11 months ago

lemonmojo commented 11 months ago

Currently, we add Collection conformance to .NET arrays in Swift. However, because .NET arrays are mutable, we should actually conform to MutableCollection.

lemonmojo commented 11 months ago

There are also a couple type specific conformances like for string arrays which should be replaced as well.