DictTable.Cachesize Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the cache size for the table, in the number of records.
public:
virtual int Cachesize();
public virtual int Cachesize ();
abstract member Cachesize : unit -> int
override this.Cachesize : unit -> int
Public Overridable Function Cachesize () As Integer
Returns
The cache size for the table.
Remarks
The following example retrieves the cache size for a table.
DictTable dt;
dt = new DictTable(tablenum(SysUserInfo));
if (dt)
{
print strfmt("Cache size: %1", dt.cacheSize());
}