public OTTArray <T> Copy( ) { OTTArray <T> other = new OTTArray <T>( ); int[] newDims = new int[this.dims.Length]; for (int i = 0; i < newDims.Length; i++) { newDims[i] = dims[i]; } other.dim(newDims); for (int i = 0; i < this.data.Count; i++) { other.data[i] = this.data[i]; } return(other); }
public static int GETFILELIST(string find, OTTArray <string> names) { //TODO return(0); }