In .NET scripting languages such as PowerShell and IronPython, when you want to use a .NET class you typically need to import the assembly name. Is there a quick way to find this information?
E.g. if I want to use System.Net.Mail, how do I quickly find out which assembly its in? I'm not necessarily looking for a programmatic way, even an online reference will do. The MSDN .NET class reference doesn't seem to tell you this (e.g. System.Net.Mail)
I only care about standard .NET classes, obviously there is no standard namespace/class to assembly mapping for custom and 3rd party classes.