Posts by WoF_Angel • 149 points
3 posts
-
0
votes1
answer39
viewsA: Objects change position when switching from browser
The 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 Problems
Try 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 protected
You 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…