c# - ArrayList.GetRange(0,54).ToString() is returning "System.Collections.ArrayList+Range" -
54 should unimportant.
the arraylist filled during arraylist.addrange(return_value) byte[] return_value = (byte[])this.in_buffer.toarray(typeof(byte)) (and in_buffer type arraylist filled addrange(byte[] bytes))
why? didn't write typeof(byte) part. plan go read now. need make use of similar? while writing this, possibility occurred me.
arraylist.getrange implemented returning subclass of arraylist called range, nested within arraylist, that's all. tostring showing type's name.
what expecting?
Comments
Post a Comment