N
needin4mation
take this snippet from 4guysfromrolla:
namespace skmCalendar
{
[ ToolboxData("<{0}:HoverCalendar
runat=server></{0}:HoverCalendar>")]
public class HoverCalendar : System.Web.UI.WebControls.Calendar
{
[Bindable(true),
Category("Appearance"),
DefaultValue("")]
public Color HoverColor
{
get
{
....
What do the items in between the [] mean? Rather, what are they called
in C#? I can guess that Appearance will show up in the Properties in
VS (that is the property Appearance will be available), but I don't
knmow what the [ ] signature is called? Attributes, correct? Are they
C# constructs or ASP.NET constructs? Thank you for any help.
namespace skmCalendar
{
[ ToolboxData("<{0}:HoverCalendar
runat=server></{0}:HoverCalendar>")]
public class HoverCalendar : System.Web.UI.WebControls.Calendar
{
[Bindable(true),
Category("Appearance"),
DefaultValue("")]
public Color HoverColor
{
get
{
....
What do the items in between the [] mean? Rather, what are they called
in C#? I can guess that Appearance will show up in the Properties in
VS (that is the property Appearance will be available), but I don't
knmow what the [ ] signature is called? Attributes, correct? Are they
C# constructs or ASP.NET constructs? Thank you for any help.