Fully qualify System.Array usage
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7405 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
e2ec34d2b0
commit
549a51eef2
1 changed files with 2 additions and 2 deletions
|
|
@ -67,11 +67,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
public void CopyTo(Array array) {
|
||||
public void CopyTo(System.Array array) {
|
||||
CopyTo(0, array, 0, this.Count);
|
||||
}
|
||||
|
||||
public void CopyTo(Array array, int arrayIndex) {
|
||||
public void CopyTo(System.Array array, int arrayIndex) {
|
||||
CopyTo(0, array, arrayIndex, this.Count);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue