0

I'm having some values which will updates frequently. i want to store this value as session we are using in web project. for i.e. var lastRunTime = DateTime.Now This variable lastRunTime needs to keep persistence up to next time scheduler run.

How to store some values into windows service like session in web?

Chetan Hirapara
  • 644
  • 1
  • 9
  • 29
  • 1. in Static variable(http://stackoverflow.com/questions/1293926/c-sharp-winforms-global-variables) 2. In ApplicationSettings(http://stackoverflow.com/questions/453161/best-practice-to-save-application-settings-in-a-windows-forms-application) – VISHMAY May 04 '16 at 05:27

1 Answers1

1
  1. in Static variable(C# - Winforms - Global Variables)

  2. In ApplicationSettings(Best practice to save application settings in a Windows Forms Application)

mark as answar if helps

Community
  • 1
  • 1
VISHMAY
  • 699
  • 5
  • 20