WPF Localization at runtime with ResX files. Part II.

WPF Localization at runtime with ResX files. Part II.

View source code on GitHub   In first part of WPF Localization & Translation I described the requirements to localization library. In this article I will show WPF localization at runtime using ResX files. Lets start with simple case and try to localize a text...
WPF Localization at runtime with ResX files. Part II.

WPF Localization and Translation. Part I.

View source code on GitHub   Once upon a time in our large application arised the problem of WPF localization. “Large” means WPF client solution that includes about 80 projects with almost 2000 XAML files. And it continues to grow with a good pace....

Where to use ‘var’ keyword in C#

Beginning from C# 3.0 version developers can write short keyword var instead of explicitly typed local variable. You can find it’s cozy to write these three letters instead of long explicit type. There is no performance impact when using var because the...