Reflection C#

using System;
using System.Reflection;
namespace Homelidays.Web.SessionService.Tests
{
    /// 
    /// A helper class that eases reflection operations.
    /// voici Les méthodes à implémenter au fur et à mesure des besoins:
    ///     - internal static object CallNonPublicStaticMethod(string className, string methodName)
    ///     - internal static object InstanciateNonPublicClass(string className)
    /// 

    internal static class ReflectionUtility
    {
        /// 
        /// Call a non public method of an object
        /// 

        /// Object whose method to call is non public.
        /// Name of the method to call.
        /// Table of parameters to pass to the method.
        /// The object returned by the private method to call.
        internal static object CallNonPublicMethod(object objectWithNonPublic, string methodName, object[] parameters)
        {
            Type type = objectWithNonPublic.GetType();
            MethodInfo method_info = type.GetMethod(methodName, BindingFlags.Instance | BindingFlags.NonPublic);
            var return_object = method_info.Invoke(objectWithNonPublic, parameters);
            return return_object;
        }
    }
}