Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

static property in C#

using System;

class Example
{
    static int _count;
    public static int Count
    {
        get
        {
            // Side effect of this property.
            _count++;
            return _count;
        }
    }
}

class Program
{
    static void Main()
    {
        Console.WriteLine(Example.Count);
        Console.WriteLine(Example.Count);
        Console.WriteLine(Example.Count);
    }
}
////////////////////
1
2
3
 
PREVIOUS NEXT
Tagged: #static #property
ADD COMMENT
Topic
Name
2+8 =