CK.Core.ActivityMonitor.DependentToken.AppendTopic C# (CSharp) Method

AppendTopic() static private method

static private AppendTopic ( string msg, string dependentTopic ) : string
msg string
dependentTopic string
return string
            static string AppendTopic( string msg, string dependentTopic )
            {
                Debug.Assert( msg.EndsWith( " with" ) );
                if( dependentTopic == null ) msg += _suffixWithoutTopic;
                else msg += _suffixWithTopic + dependentTopic + '\'';
                return msg + '.';
            }