FMOD.ChannelGroup.getChannel C# (CSharp) Method

getChannel() public method

public getChannel ( int index, Channel &channel ) : RESULT
index int
channel Channel
return RESULT
        public RESULT getChannel             (int index, out Channel channel)
        {
            channel = null;

            IntPtr channelraw;
            RESULT result = FMOD_ChannelGroup_GetChannel(getRaw(), index, out channelraw);
            channel = new Channel(channelraw);

            return result;
        }