Esempio n. 1
0
    public static long test()
    {
        var obj = new PropertyIncrement();

        obj.Value++;
        return(++obj.Value);
    }
	public static long test() {
		var obj = new PropertyIncrement();
		obj.Value++;
		return ++obj.Value;
	}