public static string Decode()

in TeamCity.ServiceMessages/ServiceMessageReplacements.cs [71:75]


        public static string Decode([NotNull] string value)
        {
            if (value == null) throw new ArgumentNullException(nameof(value));
            return Decode(value.ToCharArray());
        }