Click here to Skip to main content
Click here to Skip to main content

Building an MVP Framework for .NET. Part 2: Implementing Core Functionality

By , 11 Feb 2008
 
mvcsharp.zip
MVCSharp
API Docs
CleanUpAll.proj
Examples
Basics
ApplicationLogic
Model
Presentation
Web
Global.asax
Win
Properties
Settings.settings
SimpleFormsViewsManager
Properties
TestSimpleFormsViewsManager
ApplicationLogic
Presentation
Properties
Settings.settings
TasksInteraction
ApplicationLogic
Model
Presentation
Web
Global.asax
Win
Properties
Settings.settings
WindowsFormsExample
ApplicationLogic
Presentation
Properties
Settings.settings
MVCSharp.Tests
Core
Configuration
Tasks
Views
Tasks
MVCSharp.Tests.csproj.user
Properties
Webforms
Configuration
Winforms
Configuration
MVCSharp
Core
Configuration
Tasks
Views
Tasks
Views
Properties
Webforms
Configuration
Winforms
Configuration
//===========================================
// MVC# Framework | www.MVCSharp.org        |
// ------------------------------------------
// Copyright (C) 2008 www.MVCSharp.org      |
// All rights reserved.                     |
//===========================================

using System;
using System.Text;

namespace MVCSharp.Core.Configuration
{
    #region Documentation
    /// <summary>
    /// Helper class for creating objects.
    /// </summary>
    #endregion
    public class CreateHelper
    {
        #region Documentation
        /// <summary>
        /// Creates an object of specified type.
        /// </summary>
        #endregion
        public static object Create(Type t)
        {
            return t.GetConstructor(new Type[] { }).Invoke(new object[] { });
        }

        #region Documentation
        /// <summary>
        /// Creates an object of specified type with parameters passed to the constructor.
        /// </summary>
        #endregion
        public static object Create(Type t, params object[] parameters)
        {
            Type[] paramTypes = new Type[parameters.Length];
            for (int i = 0; i < parameters.Length; i++)
                paramTypes[i] = parameters[i].GetType();
            return t.GetConstructor(paramTypes).Invoke(parameters);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Oleg Zhukov
Architect
Russian Federation Russian Federation
Member
Oleg Zhukov, born and living in Russia is a software development consultant in a company which provides business solutions. He has graduated from Moscow Institute of Physics and Technology (MIPT) (department of system programming) and has got a M.S. degree in applied physics and mathematics. His research and development work concerns architectural patterns, domain-driven development and systems analysis. Being the adherent of agile methods he applies them extensively in the projects managed by him.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 11 Feb 2008
Article Copyright 2008 by Oleg Zhukov
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid