I am working in C# and have the following:
consumer.Subscribe( new string[] {"topic1", "topic2"});
var cr = consumer.Consume();
console.Write($"key {cr.Message.Key}\r\nvalue {cr.Message.Value}");
How do I get the topic of a specific message when I am listening to more than 1 topic?