123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- namespace Jint.Tests.Runtime.Domain;
- public class ClassWithStaticFields
- {
- public static string Get = "Get";
- public static string Set = "Set";
- public static string Getter { get { return "Getter"; } }
- public static string Setter { get; set; }
- public static readonly string Readonly = "Readonly";
- static ClassWithStaticFields()
- {
- Setter = "Setter";
- }
- }
- public class Nested
- {
- public class ClassWithStaticFields
- {
- public static string Get = "Get";
- public static string Set = "Set";
- public static string Getter
- {
- get { return "Getter"; }
- }
- public static string Setter
- {
- get
- {
- return _setter;
- }
- set
- {
- _setter = value;
- }
- }
- public static readonly string Readonly = "Readonly";
- private static string _setter;
- static ClassWithStaticFields()
- {
- Setter = "Setter";
- }
- }
- }
|