示例#1
0
 internal void EnsurePrimitiveSchemaIsLoaded(double forSchemaVersion)
 {
     if (_primitiveSchema == null)
     {
         effectiveSchemaVersion = forSchemaVersion;
         _primitiveSchema       = new PrimitiveSchema(this);
     }
 }
示例#2
0
 internal void EnsurePrimitiveSchemaIsLoaded(double forSchemaVersion)
 {
     if (this._primitiveSchema != null)
     {
         return;
     }
     this.effectiveSchemaVersion = forSchemaVersion;
     this._primitiveSchema       = new PrimitiveSchema(this);
 }
 internal void EnsurePrimitiveSchemaIsLoaded(double forSchemaVersion)
 {
     if (_primitiveSchema == null)
     {
         effectiveSchemaVersion = forSchemaVersion;
         _primitiveSchema = new PrimitiveSchema(this);
     }
 }