Scott Dorman
Scott Dorman
What is the plugin you're using for the wysiwyg editor?
Ok. I'll try and setup a WordPress environment and test this out. Is the screen capture you included what it looks like with the Bootstrap Flat theme installed or without...
Overall, I like this. Would it be reasonable to implement this so that we have both property scoped fields and also the automatic backing field? For simple cases, such as...
All good arguments, I think, for not allowing the name collisions. I'm changing my vote to "a property-scoped field **should not be allowed** to have the same name as another...
@eyalsk Looks like @lachbaer already created the proposal for it. I brought it up here because I was responding to the first two listed alternatives in this proposal, but I...
Well, one reason is that namespaces can be nested. thereby creating additional scopes. For example, your code ```c# using System; namespace Company.Project { public class Product { ... } }...
@bondsbw So you're saying that if this proposal were implemented we'd have 3 different ways to write the same scoped namespace? ```c# using System; namespace Company.Project { public class Product...
@bomzj I never said that multiple top-level namespaces in one file was a good idea, only that we can do it now and I've seen code files that take advantage...
@bondsbw Yes, proposals which break back compatibly are DOA. I still don't see how this change provides any major benefit other than not having a level of indenting, which is...
I agree, the vast majority of the time we only have one namespace per file and only have one class per file. However, that's not always the case and it's...