Click or drag to resize

SystemExtensionsFullNameWithoutAssemblyInfo Method

Returns the full name of the specified type without any assembly version info. The reason why this method is needed is that a generic type's FullName contains the full AssemblyQualifiedName of its item type.

Namespace:  Slash.Unity.DataBind.Core.Utils
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
public static string FullNameWithoutAssemblyInfo(
	this Type type
)

Parameters

type
Type: SystemType
Type to get full name for.

Return Value

Type: String
Full name of specified type without additional info of the assembly.

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).
See Also