Settings.cs 1007 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //------------------------------------------------------------------------------
  2. // <autogenerated>
  3. // This code was generated by a tool.
  4. // Runtime Version:2.0.40607.42
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </autogenerated>
  9. //------------------------------------------------------------------------------
  10. namespace LzmaAlone.Properties
  11. {
  12. public partial class Settings : System.Configuration.ApplicationSettingsBase
  13. {
  14. private static Settings m_Value;
  15. private static object m_SyncObject = new object();
  16. public static Settings Value
  17. {
  18. get
  19. {
  20. if ((Settings.m_Value == null))
  21. {
  22. System.Threading.Monitor.Enter(Settings.m_SyncObject);
  23. if ((Settings.m_Value == null))
  24. {
  25. try
  26. {
  27. Settings.m_Value = new Settings();
  28. }
  29. finally
  30. {
  31. System.Threading.Monitor.Exit(Settings.m_SyncObject);
  32. }
  33. }
  34. }
  35. return Settings.m_Value;
  36. }
  37. }
  38. }
  39. }