To call a public static property on an instance of a class in C#, you use the "ClassName.PropertyName" syntax instead of "instance.PropertyName". Here's an example code snippet:
main.cs328 chars15 linesIn the above example, we define a class MyClass with a public static property MyStaticProperty. Then, in the Main method of the Program class, we create an instance of MyClass and assign it to a variable named instance. To access the static property, we use the syntax MyClass.MyStaticProperty, which retrieves the value of the property for all instances of the MyClass class. The output of this program will be "Hello, world!".
gistlibby LogSnag