FormatterCollection<TFormatter>.RemoveType 方法

定义

重载

RemoveType(Type)

删除指定类型的所有格式化程序。

RemoveType<T>()

删除指定类型的所有格式化程序。

RemoveType(Type)

Source:
FormatterCollection.cs
Source:
FormatterCollection.cs

删除指定类型的所有格式化程序。

public:
 void RemoveType(Type ^ formatterType);
public void RemoveType (Type formatterType);
member this.RemoveType : Type -> unit
Public Sub RemoveType (formatterType As Type)

参数

formatterType
Type

要删除的类型。

适用于

RemoveType<T>()

Source:
FormatterCollection.cs
Source:
FormatterCollection.cs

删除指定类型的所有格式化程序。

public:
generic <typename T>
 where T : TFormatter void RemoveType();
public void RemoveType<T> () where T : TFormatter;
member this.RemoveType : unit -> unit
Public Sub RemoveType(Of T As TFormatter) ()

类型参数

T

要删除的类型。

适用于