public void SaveWeights() { ann = bird.GetANN(); System.IO.StreamWriter sw = new System.IO.StreamWriter(@"C:\Users\Ghost\Desktop\weights.txt"); sw.Write(ann.PrintWeights()); sw.Close(); System.IO.StreamWriter sw2 = new System.IO.StreamWriter(@"C:\Users\Ghost\Desktop\bias.txt"); sw2.Write(ann.PrintBias()); sw2.Close(); }