c# - Reproducable bug in Visual studio -
i think found reproducable bug in visual studio. when try adding "testcontrol" project, visual studio crashes.
maybe it's fault, , i'm doing wrong. build, , add control form:
here's project (11kb): https://www.dropbox.com/s/dk62j347zmwbll8/visualstudiocrash.zip
i haven't included binary files. if want test it, build , add "testcontrol" form. if somehow manage, click on control , see if crashes then.
thanks help.
the cause obvious:
public string description { { return description; } set { // lbldescription.text = value; } }
you're making recursive call accessor description
property. visual studio going infinite loop when place control on designer.
Comments
Post a Comment