Posts by WoF_Angel • 149 points
3 posts
- 
		0 votes1 answer39 viewsA: Objects change position when switching from browserThe explanation is that although the HTML standard is the same for all browsers, there are minor differences in implementations. That’s why you see differences. It’s not even their fault, the HTML… 
- 
		1 votes1 answer141 viewsA: Automapper and List ProblemsTry it this way: Mapper.Initialize(cfg => { cfg.CreateMap<NFE_CABECALHO, NFE_CABECALHOEntity>(); }); var lista = Mapper.Map<List<NFE_CABECALHOEntity>>(listaData); Mapper may be… 
- 
		0 votes3 answers450 viewsA: Access modifier protectedYou can circumvent all this, heritage and access level, with Reflection. Then you access properties and fields private, protected, whatever it is. It’s hardly the best way to solve your problem, but…