AspNetEdit.UI.EditorManager.instantiateEditor C# (CSharp) Méthode

instantiateEditor() private méthode

private instantiateEditor ( Type type, GridRow parentRow ) : BaseEditor
type System.Type
parentRow GridRow
Résultat AspNetEdit.UI.PropertyEditors.BaseEditor
        private BaseEditor instantiateEditor(Type type, GridRow parentRow)
        {
            ConstructorInfo ctor = type.GetConstructor( new Type[] { typeof (GridRow) });
            return (BaseEditor) ctor.Invoke(new object[] { parentRow });
        }