Exemplo n.º 1
0
    public static bool test()
    {
        var  obj = new LongFieldPostIncrement();
        long i   = obj.field++;

        return(obj.field == i + 1L);
    }
	public static bool test() {
		var obj = new LongFieldPostIncrement();
		long i = obj.field++;
		return obj.field == i + 1L;
	}