Example #1
0
 public bool Delete(string id)
 {
     if (string.IsNullOrEmpty(id))
     {
         throw new ArgumentException("id must not be null or empty", "id");
     }
     return(WorldAnchorStore.Delete_Internal(this.m_NativePtr, id));
 }