Argentini.Halide.H3Text.Mid C# (CSharp) Method

Mid() public static method

Return a substring from a specific character posiiton in the string, to the end of the string.
public static Mid ( string stringData, int startIndex ) : String
stringData string String to process.
startIndex int Substring begins at this character position, to the end of the string.
return String
        public static String Mid(string stringData, int startIndex)
        {
            try
            {
                string tempstr = stringData.Substring(startIndex);
                return (tempstr);
            }

            catch
            {
                return (string.Empty);
            }
        }

Same methods

H3Text::Mid ( string stringData, int startIndex, int length ) : String