Is it a good idea to put all assembly: WebResource in the same cs file?
- by Guilherme J Santos
I have a .NET library, with some WebControls.
These webControls have Embed Resources.
And we declare them like it, in all webcontrols for each cs file:
Something like this:
[assembly: WebResource("IO.Css.MyCSS.css", "text/css")]
namespace MyNamespace.MyClass
{
[ParseChildren(true)]
[PersistChildren(false)]
…