¡@

Home 

c# Programming Glossary: brittle

Convert System.Drawing.Icon to System.Media.ImageSource

http://stackoverflow.com/questions/1127647/convert-system-drawing-icon-to-system-media-imagesource

the primary WPF tastic UI of the application is too brittle to stick with. So the WinForm has got to go. So how can I get..

XPATHS and Default Namespaces

http://stackoverflow.com/questions/11345/xpaths-and-default-namespaces

can add a namespace prefix via XmlNameTable but this seems brittle since XPath is such a flexible language when it comes to node..

Attach debugger in C# to another process

http://stackoverflow.com/questions/11811856/attach-debugger-in-c-sharp-to-another-process

with C# A note of caution The following code is brittle in the sense that certain values such as the Visual Studio Version..

How to call generic method with a given Type object?

http://stackoverflow.com/questions/1408120/how-to-call-generic-method-with-a-given-type-object

typeof T .Name Do keep in mind that this is very brittle I'd rather suggest finding another pattern to call your method...

Can you convince a DataContext to treat a column as always dirty?

http://stackoverflow.com/questions/1560513/can-you-convince-a-datacontext-to-treat-a-column-as-always-dirty

I ended up with something like below this is evil and brittle reflection often is but may have to suffice for now. The other..

Entity Framework Validation

http://stackoverflow.com/questions/191143/entity-framework-validation

events of the Entity then perform validation Likely brittle and would become confusing slow after if you have many different..

How to find out if a property is an auto-implemented property with reflection?

http://stackoverflow.com/questions/2210309/how-to-find-out-if-a-property-is-an-auto-implemented-property-with-reflection

true .Any .Any return maybe It's not fool proof quite brittle and probably not portable to say Mono. share improve this answer..

C# overloading resolution?

http://stackoverflow.com/questions/2933674/c-sharp-overloading-resolution

been added in a later version and thereby be introducing a brittle base class failure. For more thoughts on how various languages.. failure. For more thoughts on how various languages handle brittle base class failures see http blogs.msdn.com b ericlippert archive.. see http blogs.msdn.com b ericlippert archive tags brittle base classes and for more thoughts on overload resolution see..

Why are private virtual methods illegal in C#?

http://stackoverflow.com/questions/3082310/why-are-private-virtual-methods-illegal-in-c

Because allowing that provides another form of the brittle base class problem. C# has been carefully designed to be less.. has been carefully designed to be less susceptible to the brittle base class problem than other OO languages. If an inaccessible..

why do we need the new keyword and why is the default behavior to hide and not override?

http://stackoverflow.com/questions/3117838/why-do-we-need-the-new-keyword-and-why-is-the-default-behavior-to-hide-and-not-o

making it an error means that this is another form of the brittle base class problem . C# has been carefully designed so that..

What's the best way to ensure a base class's static constructor is called?

http://stackoverflow.com/questions/4652454/whats-the-best-way-to-ensure-a-base-classs-static-constructor-is-called

and interesting ways that IMO make most clever approaches brittle between CLR versions. An Initialize method also might not do..

C# Is there a LINQ to HTML, or some other good .Net HTML manipulation API?

http://stackoverflow.com/questions/542194/c-sharp-is-there-a-linq-to-html-or-some-other-good-net-html-manipulation-api

parsing HTML. I have hacked solutions before but they are brittle. I am after a robust way of parsing manipulating the document...

How to do template specialization in C#

http://stackoverflow.com/questions/600978/how-to-do-template-specialization-in-c-sharp

is to use a more specific overload however this is brittle and doesn't cover every possible usage. For example void Foo..

Rhino mocks ??change behaviour of stubs

http://stackoverflow.com/questions/630037/rhino-mocks-change-behaviour-of-stubs

tests are too complicated are hard to understand and are brittle breaking easily on correct changes of the class under test...

What is the point of the ISerializable interface?

http://stackoverflow.com/questions/810974/what-is-the-point-of-the-iserializable-interface

event delegates although they can be marked NonSerialized brittle your serialization is now bound to the field names but fields..

Activate existing browser window with given URL from C# application (without triggering reload)

http://stackoverflow.com/questions/878429/activate-existing-browser-window-with-given-url-from-c-sharp-application-withou

new IntPtr This does what I need it to do but feels very brittle and hackish and is probably slow. Is there a better more elegant..

C# Covariance on subclass return types

http://stackoverflow.com/questions/9235877/c-sharp-covariance-on-subclass-return-types

versionable because it introduces yet another form of the brittle base class problem Anders doesn't think it is an interesting..