Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/10/2010, 12:30
Avatar de fechasoru
fechasoru
 
Fecha de Ingreso: diciembre-2008
Mensajes: 149
Antigüedad: 15 años, 10 meses
Puntos: 0
Respuesta: Asignar Coleciones por Valor

Hay ta chamigo de la JP; arreglado; googleando lo solucioné.
Dejo el blog donde adquiri la solución.

http://msdotnetsupport.blogspot.com/...g-in-cnet.html

/// <summary>
/// Clona la collecion de productores
/// </summary>
/// <returns></returns>
public ProductoresCollection Clonar()
{

MemoryStream ms = new MemoryStream();

BinaryFormatter bf = new BinaryFormatter(null, new StreamingContext(StreamingContextStates.Clone));

bf.Serialize(ms,this);

ms.Seek(0, SeekOrigin.Begin);

ProductoresCollection LobjTestListClone;
LobjTestListClone = (ProductoresCollection)(bf.Deserialize(ms));

ms.Close();

return LobjTestListClone;
}
__________________
Looking for a terrific Persistence Layer and Business Objects system for Microsoft.NET? our blog for more details.

http://www.entityspaces.net