Static member inside a class.

Agustin agustin.l.alvarez at hotmail.com
Thu Jun 13 12:47:22 PDT 2013


I would like to know if static members are shared between 2 
library. For example:

Class A
{
  static uint var;
}

 From Library A:

A::var = 3;

 From Library B:

if( A::var == 3 )
   ...

Its this possible? if not, its any way to make it happend?


More information about the Digitalmars-d-learn mailing list