/// <summary> /// Remove the registration entry for a Block with the specified name. /// </summary> /// <param name="name"></param> public static void DeregisterBlock(string name) { if (_engine == null) { return; } _engine.DeregisterBlock(name); }