Hi all,
When I am reading this article :
http://asp.net/learn/dataaccess/tutorial02cs.aspx?tabid=63
I found most of its class methods are under some "[" and "]" mark. For example :
[CODE]
// What the meaning of this one line below?
[System.ComponentModel.DataObject]
public class ProductsBLL
{
// And also one line below?
[System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Select, true)]
public Northwind.ProductsDataTable GetProducts()
{
return Adapter.GetProducts();
}
[/CODE]
I don't understand what is this "[System.ComponentModel.DataObject]" used for? (and also the ones at the top of getProducts() method)
Is there any tutorial for this "[aCharacter]" ?