示例#1
0
    public static bool TryGetByName <T>(this IExample <T> @this, string name, out T child)
    {
        bool success;

        child = @this.TryGetByName(name, out success);
        return(success);
    }