UnityEditor.PrefColor.ToUniqueString C# (CSharp) Method

ToUniqueString() public method

public ToUniqueString ( ) : string
return string
        public string ToUniqueString()
        {
            this.Load();
            object[] args = new object[] { this.m_name, this.Color.r, this.Color.g, this.Color.b, this.Color.a };
            return string.Format(CultureInfo.InvariantCulture, "{0};{1};{2};{3};{4}", args);
        }