AssemblyInfoDescription Method | |
Gives description about the assembly
Namespace:
SIC
Assembly:
SIC (in SIC.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax public static string Description(
this Assembly pAssembly
)
<ExtensionAttribute>
Public Shared Function Description (
pAssembly As Assembly
) As String
Parameters
- pAssembly
- Type: System.ReflectionAssembly
An assembly
Return Value
Type:
StringDescription about the assembly
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Assembly. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Examples string Title = System.Reflection.Assembly.GetExecutingAssembly().Title();
See Also