Posts by Osmar_Jr • 21 points
2 posts
-
1
votes4
answers486
viewsA: How to break line using Streamwriter?
Write, write without skipping line and Writeline, write line and jump objWR.Writeline(string) Or These two below are equivalent, if you debug you will see that this Environment.Newline is "/r/n":…
-
1
votes1
answer613
viewsA: How to select using LINQ with 2 tables?
Have you ever tried using LINQ? would look something like this: return _cidadeRepositorio.Where(c => c.estadoID == estadoID).ToList(); Or so: return _cidadeRepositorio.Where(c => c.estadoID ==…