C# Class Myre.Extensions.TypeExtensions

A static class containing extensions methods for the System.Type class.
Afficher le fichier Open project: martindevans/Myre

Méthodes publiques

Méthode Description
GetImplementedTypes ( this t ) : IEnumerable

Get all types this type derives from

Parse ( this t, string s ) : object

Attempts to parse the given string with the default static Parse method for the given type

Method Details

GetImplementedTypes() public static méthode

Get all types this type derives from
public static GetImplementedTypes ( this t ) : IEnumerable
t this
Résultat IEnumerable

Parse() public static méthode

Attempts to parse the given string with the default static Parse method for the given type
public static Parse ( this t, string s ) : object
t this
s string
Résultat object