Want to build the ChatGPT based Apps? Start here
Become a member
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
C# Corner Home
Technologies
Monthly Leaders
ASK A QUESTION
Forum guidelines
morteza siami
2.2k
28
16.5k
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.