System.Uri.FindEndOfComponent C# (CSharp) Method

FindEndOfComponent() private method

private FindEndOfComponent ( string input, ushort &idx, ushort end, char delim ) : void
input string
idx ushort
end ushort
delim char
return void
        private unsafe void FindEndOfComponent(string input, ref ushort idx, ushort end, char delim)
        {
            fixed (char* str = input)
            {
                FindEndOfComponent(str, ref idx, end, delim);
            }
        }
        private unsafe void FindEndOfComponent(char* str, ref ushort idx, ushort end, char delim)

Same methods

Uri::FindEndOfComponent ( char str, ushort &idx, ushort end, char delim ) : void