using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
namespace Yamma.Util
{
public static class ReflectionHelper
{
public static PropertyInfo[] GetWritableProperties()
{
Type type = typeof(T);
return type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
}
public static MethodInfo[] GetMethods()
{
Type type = typeof(T);
return type.GetMethods();
}
}
}