예제 #1
0
 public bool Deserialize()
 {
     if (_serializer.CanDeserialize(BbdPath))
     {
         _serializer.Deserialize(BbdPath, out _data);
         TryToUpgrade();
         return(true);
     }
     else
     {
         throw new System.NotSupportedException($"Version is not supported");
     }
 }