Written by

Question kavin kumar · Sep 4, 2017

Double dot?

Why we using double dot in cache?what is the use of it?

Comments

Oleg Dmitrovich · Sep 5, 2017

not only properties. Also:

d ..AnotherMethod() // of THIS class

w ..#Parameter // of THIS class

and even 

d ..AnotherClassMethod()  //of course in ClassMethod or Method of THIS class

double dot - shortcut to THIS class context

0