En C# 3.0 puede crear clase anónima con la siguiente sintaxis¿Cómo nueva clase anónima dinámica?
var o1 = new { Id = 1, Name = "Foo" };
¿Hay una manera de crear estos dinámico clase anónima a una variable?
Ejemplo:
var o1 = new { Id = 1, Name = "Foo" };
var o2 = new { SQ = 2, Birth = DateTime.Now };
dinámico crear Ejemplo:
var o1 = DynamicNewAnonymous(new NameValuePair("Id", 1), new NameValuePair("Name", "Foo"));
var o2 = DynamicNewAnonymous(new NameValuePair("SQ", 2), new NameValuePair("Birth",
DateTime.Now));
Beacuse que tengo que hacer:
dynamic o1 = new ExpandObject();
o1."ID" = 1; <--"ID" is dynamic name
o1."Name" = "Foo"; <--"Name" is dynamic name
Y Escena1:
void ShowPropertiesValue(object o)
{
Type oType = o.GetType();
foreach(var pi in oType.GetProperties())
{
Console.WriteLine("{0}={1}", pi.Name, pi.GetValue(o, null));
}
}
si llamo:
dynamic o1 = new ExpandObject();
o1.Name = "123";
ShowPropertiesValue(o1);
No se puede mostrar el resultado:
Name = 123
Y también cómo convertir la ExpandoObject a AnonymouseType?
Type type = o1.GetType();
type.GetProperties(); <--I hope it can get all property of o1
pasado, modifico método ShowPropertiesValue()
void ShowPropertiesValue(object o)
{
if(o is static object) <--How to check it is dynamic or static object?
{
Type oType = o.GetType();
foreach(var pi in oType.GetProperties())
{
Console.WriteLine("{0}={1}", pi.Name, pi.GetValue(o, null));
}
}
else if(o is dynamic object) <--How to check it is dynamic or static object?
{
foreach(var pi in ???) <--How to get common dynamic object's properties info ?
{
Console.WriteLine("{0}={1}", pi.Name, pi.GetValue(o, null));
}
}
}
cómo poner en práctica el método DynamicNewAnonymous o cómo modificar el ShowPropertiesValue()?
Mis motivaciones es:
dynamic o1 = new MyDynamic();
o1.Name = "abc";
Type o1Type = o1.GetType();
var props = o1Type.GetProperties(); <--I hope can get the Name Property
Si puedo enganchar Método GetType de dynamicObject, y obligar a convertir Tipo-inflexible de tipos. El código transparente anterior puede funcionar bien.
@Vlad: Admito que no estoy nada claro sobre las motivaciones. –
@VladLazarenko Creo que tienes razón :-) – oberfreak
Cuéntanos qué quieres hacer y por qué esta es tu solución seleccionada. – oberfreak