remarks generate example c# reflection default

generate - params comments c#



Equivalente programático de incumplimiento(Tipo) (12)

¿Por qué dices que los genéricos están fuera de la imagen?

public static object GetDefault(Type t) { Func<object> f = GetDefault<object>; return f.Method.GetGenericMethodDefinition().MakeGenericMethod(t).Invoke(null, null); } private static T GetDefault<T>() { return default(T); }

Estoy usando la reflexión para recorrer las propiedades de un Type y establecer ciertos tipos a sus valores predeterminados. Ahora, podría hacer un cambio en el tipo y establecer el default(Type) explícitamente, pero prefiero hacerlo en una línea. ¿Hay un equivalente programático de default?


¿Por qué no llamar al método que devuelve predeterminado (T) con reflexión? Puedes usar GetDefault de cualquier tipo con:

public object GetDefault(Type t) { return this.GetType().GetMethod("GetDefaultGeneric").MakeGenericMethod(t).Invoke(this, null); } public T GetDefaultGeneric<T>() { return default(T); }


Equivalente a la respuesta de Dror pero como método de extensión:

namespace System { public static class TypeExtensions { public static object Default(this Type type) { object output = null; if (type.IsValueType) { output = Activator.CreateInstance(type); } return output; } } }


Esta es la solución optimizada de Flem:

using System.Collections.Concurrent; namespace System { public static class TypeExtension { //a thread-safe way to hold default instances created at run-time private static ConcurrentDictionary<Type, object> typeDefaults = new ConcurrentDictionary<Type, object>(); public static object GetDefaultValue(this Type type) { return type.IsValueType ? typeDefaults.GetOrAdd(type, Activator.CreateInstance) : null; } } }


Hago la misma tarea como esta.

//in MessageHeader private void SetValuesDefault() { MessageHeader header = this; Framework.ObjectPropertyHelper.SetPropertiesToDefault<MessageHeader>(this); } //in ObjectPropertyHelper public static void SetPropertiesToDefault<T>(T obj) { Type objectType = typeof(T); System.Reflection.PropertyInfo [] props = objectType.GetProperties(); foreach (System.Reflection.PropertyInfo property in props) { if (property.CanWrite) { string propertyName = property.Name; Type propertyType = property.PropertyType; object value = TypeHelper.DefaultForType(propertyType); property.SetValue(obj, value, null); } } } //in TypeHelper public static object DefaultForType(Type targetType) { return targetType.IsValueType ? Activator.CreateInstance(targetType) : null; }


La respuesta elegida es una buena respuesta, pero tenga cuidado con el objeto devuelto.

string test = null; string test2 = ""; if (test is string) Console.WriteLine("This will never be hit."); if (test2 is string) Console.WriteLine("Always hit.");

Extrapolando ...

string test = GetDefault(typeof(string)); if (test is string) Console.WriteLine("This will never be hit.");


Las expresiones pueden ayudar aquí:

private static Dictionary<Type, Delegate> lambdasMap = new Dictionary<Type, Delegate>(); private object GetTypedNull(Type type) { Delegate func; if (!lambdasMap.TryGetValue(type, out func)) { var body = Expression.Default(type); var lambda = Expression.Lambda(body); func = lambda.Compile(); lambdasMap[type] = func; } return func.DynamicInvoke(); }

No probé este fragmento, pero creo que debería producir nulos "escritos" para los tipos de referencia ...


Puede utilizar PropertyInfo.SetValue(obj, null) . Si se llama en un tipo de valor, le dará el valor predeterminado. Este comportamiento está documentado en .NET 4.0 y en .NET 4.5 .


Si está utilizando .NET 4.0 o superior y desea una versión programática que no sea una codificación de reglas definidas fuera del código , puede crear una Expression , compilarla y ejecutarla sobre la marcha.

El siguiente método de extensión tomará un Type y obtendrá el valor devuelto desde el valor default(T) hasta el Método Default en la clase de Expression :

public static T GetDefaultValue<T>() { // We want an Func<T> which returns the default. // Create that expression here. Expression<Func<T>> e = Expression.Lambda<Func<T>>( // The default value, always get what the *code* tells us. Expression.Default(typeof(T)) ); // Compile and return the value. return e.Compile()(); } public static object GetDefaultValue(this Type type) { // Validate parameters. if (type == null) throw new ArgumentNullException("type"); // We want an Func<object> which returns the default. // Create that expression here. Expression<Func<object>> e = Expression.Lambda<Func<object>>( // Have to convert to object. Expression.Convert( // The default value, always get what the *code* tells us. Expression.Default(type), typeof(object) ) ); // Compile and return the value. return e.Compile()(); }

También debe almacenar en caché el valor anterior en función del Type , pero tenga en cuenta que si llama a esto para una gran cantidad de instancias de Type y no lo use constantemente, la memoria consumida por la memoria caché puede superar los beneficios.


Todavía no puedo encontrar nada simple y elegante, pero tengo una idea: si conoce el tipo de propiedad que desea establecer, puede escribir su propio default(T) . Hay dos casos: T es un tipo de valor y T es un tipo de referencia. Puedes ver esto marcando T.IsValueType . Si T es un tipo de referencia, simplemente puede establecerlo en null . Si T es un tipo de valor, tendrá un constructor sin parámetros predeterminado al que puede llamar para obtener un valor "en blanco".


/// <summary> /// returns the default value of a specified type /// </summary> /// <param name="type"></param> public static object GetDefault(this Type type) { return type.IsValueType ? (!type.IsGenericType ? Activator.CreateInstance(type) : type.GenericTypeArguments[0].GetDefault() ) : null; }


  • En el caso de un tipo de valor, use Activator.CreateInstance y debería funcionar bien.
  • Cuando se usa el tipo de referencia solo devuelve nulo

public static object GetDefault(Type type) { if(type.IsValueType) { return Activator.CreateInstance(type); } return null; }

En la versión más reciente de .net como .net estándar, type.IsValueType debe escribirse como type.GetTypeInfo().IsValueType