 Assembly.
Assembly.
            Assembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Parameters
- myAssembly
- Type:  System.Reflection Assembly System.Reflection Assembly
 The Assembly to get the name for. Assembly to get the name for.
Return Value
Type: String
StringThe short name of the
 Assembly.
Assembly.
            The short name of the assembly is the  FullName 
            without the version, culture, or public key. i.e. it is just the 
            assembly's file name without the extension.
FullName 
            without the version, culture, or public key. i.e. it is just the 
            assembly's file name without the extension.
            
Use this rather than Assembly.GetName().Name because that is not available on the Compact Framework.
            Because of a FileIOPermission security demand we cannot do
            the obvious Assembly.GetName().Name. We are allowed to get
            the  FullName of the assembly so we 
            start from there and strip out just the assembly name.
FullName of the assembly so we 
            start from there and strip out just the assembly name.