Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi I am new to Winforms.

I have a Class :
C#
public class Data
    {
        [Category("Numbers"), Description("Set of 256 user variables available in the form of a 32 bit sign integer.")]
        public int[] num{ get; set; }
        //Constructor
        public Data()
        {
            num= new int[256];
        }
    }


This creates a eclipsei.e [..] which opens a collection editor.
How can i remove this [..]

Any suggestion please help.
Posted
Comments
Sergey Alexandrovich Kryukov 8-Nov-13 1:52am    
No, it does not create "eclipse"...
—SA
rohit24c 8-Nov-13 2:03am    
i am having a PropertyGrid Control placed on the form. on which num is being displayed on click on the num it shows a eclipse[..]
nv3 8-Nov-13 4:38am    
Ah, you mean an "ellipses" not an eclipse, which is in fact a button with three dots.

Please update your question accordingly. And I doubt that your question relates to C, but probably to C#.
The_Inventor 9-Nov-13 4:07am    
It is showing a RANGE between A...Z of your 256 numbers 1...256

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900