public RESULT getChannel(int index, out Channel channel)
        {
            channel = null;
            IntPtr raw;
            RESULT result = ChannelGroup.FMOD5_ChannelGroup_GetChannel(base.getRaw(), index, out raw);

            channel = new Channel(raw);
            return(result);
        }