Category Archive: C# .Net

Jul 19

Data Adapters in ADO.Net

Data Adapters are the objects in ADO.Net that allow us to communicate and exchange data between a data source and a dataset.  With them, we are able to retrieve data from and write data to a database (actually any type of data repository). The type of database you are connecting to informs you as to …

Continue reading »

Jul 12

C# .Net Basics: Classes

Classes A class is a user defined object or type construct that allows you to group together fields, properties and methods into a custom type that behaves in a consistent way.  A class is a reference type; when an instance of a class is instantiated, an object reference is returned to the calling function, not …

Continue reading »