# Summary

* [Введение](https://andreyakinshin.gitbook.io/problembookdotnet/ru/introduction)
* ООП (Задачи)
  * [OverloadResolutionBasic](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/overloadresolutionbasic-p)
  * [OverloadResolutionOverride](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/overloadresolutionoverride-p)
  * [OverloadResolutionInheritance](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/overloadresolutioninheritance-p)
  * [InheritanceNestedClass](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/inheritancenestedclass-p)
  * [StaticFieldInGenericType](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/staticfieldingenerictype-p)
* LINQ (Задачи)
  * [EnumerableToArray](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/enumerabletoarray-p)
  * [LifeAfterYield](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/lifeafteryield-p)
  * [ClosureAndForeach](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/closureandforeach-p)
  * [ClosureAndFor](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/closureandfor-p)
  * [QueryAfterRemove](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/queryafterremove-p)
  * [ClosureAndVariable](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/closureandvariable-p)
  * [QueryWithInc](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/querywithinc-p)
  * [ExceptionYieldYield](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/exceptionyieldyield-p)
  * [YieldExceptionYield](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/yieldexceptionyield-p)
  * [TryYieldFinally](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/tryyieldfinally-p)
* Математика (Задачи)
  * [Rounding1](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/rounding1-p)
  * [Rounding2](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/rounding2-p)
  * [Eps](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/eps-p)
  * [DivideByZero](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/dividebyzero-p)
  * [Overflow](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/overflow-p)
  * [AugmentedAssignment](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/augmentedassignment-p)
  * [DynamicIncrement](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/dynamicincrement-p)
* Значимые типы (Задачи)
  * [Boxing](https://andreyakinshin.gitbook.io/problembookdotnet/ru/valuetypes/boxing-p)
  * [MutableProperty](https://andreyakinshin.gitbook.io/problembookdotnet/ru/valuetypes/mutableproperty-p)
  * [Enumerator](https://andreyakinshin.gitbook.io/problembookdotnet/ru/valuetypes/enumerator-p)
  * [StructLayout](https://andreyakinshin.gitbook.io/problembookdotnet/ru/valuetypes/structlayout-p)
* Строки (Задачи)
  * [PlusString](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/plusstring-p)
  * [PlusChar](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/pluschar-p)
  * [StringPlusNull](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/stringplusnull-p)
  * [CaseInComparison](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/caseincomparison-p)
  * [CorruptedNumber](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/corruptednumber-p)
  * [CurrentCulture](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/currentculture-p)
  * [CompareToVsEquals](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/comparetovsequals-p)
  * [CorruptedString](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/corruptedstring-p)
  * [ExplicitlyInternment](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/explicitlyinternment-p)
  * [NoStringInterning](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/nostringinterning-p)
  * [InternmentAndMetadata](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/internmentandmetadata-p)
  * [Secure](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/secure-p)
  * [StableSorting](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/stablesorting-p)
  * [TextElementEnumerator](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/textelementenumerator-p)
* Многопоточность (Задачи)
  * [ThreadStaticVariable](https://andreyakinshin.gitbook.io/problembookdotnet/ru/multithreading/threadstaticvariable-p)
  * [LockSlimInFinalizer](https://andreyakinshin.gitbook.io/problembookdotnet/ru/multithreading/locksliminfinalizer-p)
* ООП (Решения)
  * [OverloadResolutionBasic](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/overloadresolutionbasic-s)
  * [OverloadResolutionOverride](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/overloadresolutionoverride-s)
  * [OverloadResolutionInheritance](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/overloadresolutioninheritance-s)
  * [InheritanceNestedClass](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/inheritancenestedclass-s)
  * [StaticFieldInGenericType](https://andreyakinshin.gitbook.io/problembookdotnet/ru/oop/staticfieldingenerictype-s)
* LINQ (Решения)
  * [EnumerableToArray](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/enumerabletoarray-s)
  * [LifeAfterYield](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/lifeafteryield-s)
  * [ClosureAndForeach](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/closureandforeach-s)
  * [ClosureAndFor](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/closureandfor-s)
  * [QueryAfterRemove](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/queryafterremove-s)
  * [ClosureAndVariable](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/closureandvariable-s)
  * [QueryWithInc](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/querywithinc-s)
  * [ExceptionYieldYield](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/exceptionyieldyield-s)
  * [YieldExceptionYield](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/yieldexceptionyield-s)
  * [TryYieldFinally](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/tryyieldfinally-s)
* Математика (Решения)
  * [Rounding1](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/rounding1-s)
  * [Rounding2](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/rounding2-s)
  * [Eps](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/eps-s)
  * [DivideByZero](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/dividebyzero-s)
  * [Overflow](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/overflow-s)
  * [AugmentedAssignment](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/augmentedassignment-s)
  * [DynamicIncrement](https://andreyakinshin.gitbook.io/problembookdotnet/ru/math/dynamicincrement-s)
* Значимые типы (Решения)
  * [Boxing](https://andreyakinshin.gitbook.io/problembookdotnet/ru/valuetypes/boxing-s)
  * [MutableProperty](https://andreyakinshin.gitbook.io/problembookdotnet/ru/valuetypes/mutableproperty-s)
  * [Enumerator](https://andreyakinshin.gitbook.io/problembookdotnet/ru/valuetypes/enumerator-s)
  * [StructLayout](https://andreyakinshin.gitbook.io/problembookdotnet/ru/valuetypes/structlayout-s)
* Строки (Решения)
  * [PlusString](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/plusstring-s)
  * [PlusChar](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/pluschar-s)
  * [StringPlusNull](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/stringplusnull-s)
  * [CaseInComparison](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/caseincomparison-s)
  * [CorruptedNumber](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/corruptednumber-s)
  * [CurrentCulture](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/currentculture-s)
  * [CompareToVsEquals](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/comparetovsequals-s)
  * [CorruptedString](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/corruptedstring-s)
  * [ExplicitlyInternment](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/explicitlyinternment-s)
  * [NoStringInterning](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/nostringinterning-s)
  * [InternmentAndMetadata](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/internmentandmetadata-s)
  * [Secure](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/secure-s)
  * [StableSorting](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/stablesorting-s)
  * [TextElementEnumerator](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/textelementenumerator-s)
* Многопоточность (Решения)
  * [ThreadStaticVariable](https://andreyakinshin.gitbook.io/problembookdotnet/ru/multithreading/threadstaticvariable-s)
  * [LockSlimInFinalizer](https://andreyakinshin.gitbook.io/problembookdotnet/ru/multithreading/locksliminfinalizer-s)
