Category Archives: Wissen

Fill a dictionary with properties of a class

Following scenario… you need to create a key/value configuration file within a configuration class. Properties are the Keys and their value is the value ;). Values for the properties need to be assigned automaticly when the “configuration file” is loaded, … Continue reading

Posted in C#, PC, programming, Sonstiges, Wissen, Work | Tagged , , , , | Leave a comment

Kleine und Große Quadratische Lösungsformel

Allgemeiner quadratische Funktion: $latex ax^2 + bx + c$ Die “große” Lösungsformel: $latex x_{1,2} = \frac{-b\pm\sqrt{b^2-4ac}}{2a}$ wird angewendet wenn $latex a$ ein numerischer Wert größer 1 ist. zb.: $latex 3x^2+2x+3$ oder $latex 3x^2+2x$ Die “kleine” Lösungsformel: $latex x_{1,2} = -\frac{p}{2}\pm\sqrt{(\frac{p}{2})^2-q}$ wird angewendet … Continue reading

Posted in Deutsch, Mathematik, Wissen | Tagged , , , , , , , | Leave a comment