Tagged Questions
The generatedcode tag has no wiki summary.
2
votes
2answers
833 views
Can I add MVC 2 DataAnnotation attributes to existing properties?
I'm using a generated class as a model, and I wish to add DataAnnotation attributes to some of its properties. As it's a generated code, I don't want to add the annotations directly. Is there another ...
2
votes
2answers
2k views
C#: Does ResumeLayout(true) do the same as ResumeLayout(false) + PerformLayout()?
I have looked at the generated designer code of Forms and UserControls, and in the InitializeComponent() method they always start with
this.SuspendLayout();
and end with
...
1
vote
3answers
810 views
Generate HTML Table Client Side
(ASP.NET Web Application) I'd like to create a page which allows the user to build an HTML table. The user will be provided with the following controls: a textbox used to define the amount of rows in ...
1
vote
2answers
335 views
IDisposable Winform
What is the best practice for implementing IDisposable on a Winform?
I have a dialog which extends System.Windows.Forms.Form
The generated designer.cs already contains an implementation of the ...
1
vote
1answer
694 views
What happened to 'nice' generated class names in .NET for web services?
I am using .NET 3.5 to call a FedEx web service.
In Fedex's sample code (VS2005) it has things like:
AddressValidationService addressValidationService = new AddressValidationService();
...