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

StringConstants.cs 428 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
  1. namespace ContosoFlowers
  2. {
  3. public static class StringConstants
  4. {
  5. public const string Today = "Today";
  6. public const string Tomorrow = "Tomorrow";
  7. public const string NotSetBillingAddress = "Not set";
  8. public const string HomeBillingAddress = "Home";
  9. public const string WorkBillingAddress = "Work";
  10. public const string UserPreferencesKey = "userpreferenceskey";
  11. }
  12. }
Tip!

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

Comments

Loading...