public static OldHit Deserialize(IReader reader, Path path = null) { var oldHit = new OldHit(path); oldHit.Replace(reader); return(oldHit); }
private static String HitToString(OldHit hit) { return(hit != null?string.Format("{{ Dummy: {0} }}", hit.Dummy) : "<null>"); }