ME3Explorer.UnrealHelper.UPropertyReader.clr0 C# (CSharp) Method

clr0() private method

private clr0 ( string input ) : string
input string
return string
        private string clr0(string input)
        {
            if (input[input.Length - 1] == '\0')
                return input.Substring(0, input.Length - 1);
            else
                return input;
        }