¡@

Home 

c# Programming Glossary: bloat

Getting ServiceStack to retain type information

http://stackoverflow.com/questions/10750571/getting-servicestack-to-retain-type-information

info in the __type property and since it can considerably bloat the payload will only emit this type information for types that..

Deciding on when to use XmlDocument vs XmlReader

http://stackoverflow.com/questions/1505075/deciding-on-when-to-use-xmldocument-vs-xmlreader

it up front you can save yourself some grief. XML tends to bloat when loaded into memory at least with a DOM reader like XmlDocument..

Class with single method — best approach?

http://stackoverflow.com/questions/205689/class-with-single-method-best-approach

methods. True utility classes that do not pose any risk to bloat are excellent cases for static methods System.Convert as an..

When to Use Static Classes in C#

http://stackoverflow.com/questions/241339/when-to-use-static-classes-in-c-sharp

methods. True utility classes that do not pose any risk to bloat are excellent cases for static methods System.Convert as an..

Why classes tend to be defined as interface nowadays?

http://stackoverflow.com/questions/3281582/why-classes-tend-to-be-defined-as-interface-nowadays

to be user configurable... . In that case rather than bloat the existing implementation of BenefitCalculator it makes sense..

What's the difference between “groups” and “captures” in .NET regular expressions?

http://stackoverflow.com/questions/3320823/whats-the-difference-between-groups-and-captures-in-net-regular-expression

new dimension to the match results or adds confusion and bloat. And further on The main difference between a Group object and..

Why is string a reference type?

http://stackoverflow.com/questions/3655984/why-is-string-a-reference-type

to be boxed which would create a new object which would bloat the heap and cause pointless GC pressure. Since strings are..

XNA - Keyboard text input

http://stackoverflow.com/questions/375316/xna-keyboard-text-input

of Windows forms which meant unnecessary memory footprint bloat. So my last idea was to create a Thread level low level keyboard..

Difference between Dependency Injection and Mocking framework (Ninject vs RhinoMock or Moq)

http://stackoverflow.com/questions/5433211/difference-between-dependency-injection-and-mocking-framework-ninject-vs-rhinom

You'll need to write a lot of fake code its a lot of code bloat So you can use a mocking framework to write less code here...