Posts by Sergio Prates Dos Santos • 31 points
2 posts
-
0
votes2
answers2309
viewsA: 'Data Access Layer' is the same as 'Data Access Object'?
Well, as far as I know the definitions are correct: DAL (Data Access Layer) and DAO (Data Access Object) I believe the difference is that DAL is a definition for the database access layer and DAO is…
-
3
votes5
answers1506
viewsA: Read XML file in C#
Try it this way: string caminho = @"seu caminho"; if (File.Exists(caminho)) { StreamReader sr = new StreamReader(caminho); XmlDocument doc = new XmlDocument(); doc.Load(sr); XmlNode valores =…