Module::ToString Method ()
.NET Framework (current version)
Returns the name of the module.
Assembly: mscorlib (in mscorlib.dll)
The following example demonstrates a use of the ToString method.
using namespace System; using namespace System::Reflection; int main() { array<Module^>^moduleArray; moduleArray = Assembly::GetExecutingAssembly()->GetModules( false ); //In a simple project with only one module, the module at index // 0 will be the module containing this class. Module^ myModule = moduleArray[ 0 ]; Console::WriteLine( "myModule->ToString returns: {0}", myModule ); }
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: