Remove the repeated characters from the string using C#

            string x = "AABBCDEFF";
            string result = "";
            foreach (char value in x)
            {
                if (result.IndexOf(value) == -1)
                {
                    result += value;
                }
            }
            x= result;