here`s a simple question:
I have something like this
Youtube youtubeChannel = new Youtube();
Console.WriteLine("youtubeChannel");
Instead hardcoding youtubeChannel in console, i want to get reference name as string and print it in console. Something like:
Console.WriteLine(youtubeChannel.ToString());
And get result -> "youtubeChannel" in console.