ME3Explorer.UnrealHelper.UPropertyReader.clr0 C# (CSharp) 메소드

clr0() 개인적인 메소드

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