TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
morteza siami
NA
28
17.8k
What is the Category and Description incode?
Apr 30 2013 5:40 AM
hi;
What is the order of Category and
D
escription
in the following code?
What it does?
plead Help me.
--------------------------------------------------------------
private
class
NodeProps
{
[
Category
(
"Properties"
)]
[
D
escription
(
"The text displayed within the node."
)]
public
string
Text
{
get
{
return
_text; }
set
{ _text =
value
; }
}
[
Category
(
"Properties"
)]
[
Description
(
"The font of the node's text."
)]
public
Font
Font
{
get
{
return
_font; }
set
{ _font =
value
; }
}
[
Category
(
"Properties"
)]
[
Description
(
"The interior color of the node."
)]
public
Color
FillColor
{
get
{
return
_fillColor; }
set
{ _fillColor =
value
; }
}
private
string
_text;
private
Font
_font;
private
Color
_fillColor;
}
-----------------------------------------------------
Reply
Answers (
1
)
Reading data from remote file
C# IE toolbar button runs bat script. works only once.