Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

LocalizedStrings.cs 455 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  1. namespace WorkingWithWebview.WinPhone
  2. {
  3. using WorkingWithWebview.WinPhone.Resources;
  4. /// <summary>
  5. /// Provides access to string resources.
  6. /// </summary>
  7. public class LocalizedStrings
  8. {
  9. private static AppResources localizedResources = new AppResources();
  10. public AppResources LocalizedResources
  11. {
  12. get
  13. {
  14. return localizedResources;
  15. }
  16. }
  17. }
  18. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...