Skip to content

M_CodeJam_Reflection_ReflectionExtensions_GetShortAssemblyQualifiedName

Andrew Koryavchenko edited this page Jun 17, 2018 · 2 revisions

ReflectionExtensions.GetShortAssemblyQualifiedName Method

Gets the short form of assembly qualified type name (without assembly version or assembly key).

Namespace: CodeJam.Reflection
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0

Syntax

C#

public static string GetShortAssemblyQualifiedName(
	this Type type
)

VB

<ExtensionAttribute>
Public Shared Function GetShortAssemblyQualifiedName ( 
	type As Type
) As String

F#

[<ExtensionAttribute>]
static member GetShortAssemblyQualifiedName : 
        type : Type -> string 

Parameters

 

type
Type: System.Type
The type to get the name for.

Return Value

Type: String
The short form of assembly qualified type name.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Type. 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

// result is "CodeJam.Reflection.ReflectionExtensions, CodeJam";
var shortNameWithAssembly = typeof(ReflectionExtensions).GetShortAssemblyQualifiedName();

See Also

Reference

ReflectionExtensions Class
CodeJam.Reflection Namespace

Clone this wiki locally