Исправить ошибку в коде (сериализация/десериализация) - C#

Узнай цену своей работы

Формулировка задачи:

Имеется код. Компилируется, но при попытке открыть файл/сохранить выдает ошибку: Необработанное исключение типа "System.Threading.ThreadStateException" в System.Windows.Forms.dll Вот, собственно, сам код:
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7. using System.Drawing;
  8. using System.IO;
  9. namespace Point
  10. {
  11. class Point
  12. {
  13. protected int x;
  14. protected int y;
  15. public Point()
  16. {
  17. x = 5;
  18. y = 5;
  19. }
  20. public Point(int k, int g)
  21. {
  22. x = k;
  23. y = g;
  24. }
  25. public Point(Point p)
  26. {
  27. x = p.x;
  28. y = p.y;
  29. }
  30. public int getx()
  31. {
  32. return x;
  33. }
  34. public int gety()
  35. {
  36. return y;
  37. }
  38. public void setx(int t)
  39. {
  40. x = t;
  41. }
  42. public void sety(int t)
  43. {
  44. y = t;
  45. }
  46. public double distance(Point p)
  47. {
  48. return Math.Sqrt((x - p.x) * (x - p.x) + (y - p.y) * (y - p.y));
  49. }
  50. public void plus(Point p)
  51. {
  52. x = x + p.x;
  53. y = y + p.y;
  54. }
  55. public bool testconv(Point p)
  56. {
  57. if ((x == p.x) && (y == p.y)) return true;
  58. else return false;
  59. }
  60. public void displayin()
  61. {
  62. Console.WriteLine(" enter point\n");
  63. x = y = Convert.ToInt32(Console.ReadLine());
  64. }
  65. public virtual void displayout()
  66. {
  67. Console.WriteLine(string.Format("Point({0},{1})\n", x, y));
  68. }
  69. class PColor : Point
  70. {
  71. private string c;
  72. public override void displayout()
  73. {
  74. Console.WriteLine("Color " + c);
  75. }
  76. public PColor()
  77. {
  78. c = "white";
  79. }
  80. public PColor(int x1, int y1, string c1) : base(x1, y1)
  81. {
  82. c = c1;
  83. }
  84. public PColor(PColor p) : base(p)
  85. {
  86. c = p.c;
  87. }
  88. }
  89. /*static void Main(string[] args)
  90. {
  91. int x, y;
  92. Point a = new Point();
  93. a.displayout();
  94. a.displayin();
  95. Console.WriteLine("you entered: " + a.getx() + " " + a.gety());
  96. a.displayout();
  97. Console.WriteLine("copy constructor test: ");
  98. Point b = new Point(a);
  99. b.displayout();
  100. Console.WriteLine("enter x,y:\n");
  101. x = Convert.ToInt32(Console.ReadLine());
  102. y = Convert.ToInt32(Console.ReadLine());
  103. a.setx(x);
  104. a.sety(y);
  105. Console.WriteLine("setter test: ");
  106. a.displayout();
  107. Console.WriteLine("parameter constructor test: ");
  108. Point c = new Point(x, y);
  109. c.displayout();
  110. Console.WriteLine("distance: " + c.distance(b));
  111. if (b.testconv(c)) Console.WriteLine("they are equal\n");
  112. else Console.WriteLine("they are not equal\n");
  113. Console.WriteLine("adding points result: ");
  114. a.plus(b);
  115. a.displayout();
  116. PColor f = new PColor();
  117. f.displayout();
  118. PColor f1 = new PColor(3, 3, "green");
  119. f1.displayout();
  120. PColor f2 = new PColor(f1);
  121. f2.displayout();
  122. Console.ReadKey();
  123. }*/
  124. }
  125. class Program : Form
  126. {
  127. private List<Point> points;
  128. public Program()
  129. {
  130. points = new List<Point>();
  131. Menu = new MainMenu();
  132. MenuItem menuFile = new MenuItem("File");
  133. Menu.MenuItems.Add(menuFile);
  134. MenuItem menuOpen = new MenuItem("Open");
  135. menuOpen.Click += new EventHandler(this.onOpen);
  136. menuFile.MenuItems.Add(menuOpen);
  137. MenuItem menuSaveAs = new MenuItem("Save as");
  138. menuSaveAs.Click += new EventHandler(this.onSaveAs);
  139. menuFile.MenuItems.Add(menuSaveAs);
  140. this.Paint += new PaintEventHandler(this.onPaint);
  141. this.MouseClick += new MouseEventHandler(this.onClick);
  142. }
  143. private void onOpen(object sender, EventArgs e)
  144. {
  145. OpenFileDialog fd = new OpenFileDialog();
  146. fd.DefaultExt = "pnt";
  147. fd.Filter = "Text files (*.pnt)|*.pnt|All files (*.*)|*.*";
  148. fd.ShowDialog();
  149. if (fd.FileName != "")
  150. {
  151. points.Clear();
  152. Stream s = File.OpenRead(fd.FileName);
  153. BinaryReader r = new BinaryReader(s);
  154. int size = r.ReadInt32();
  155. for (int i = 0; i < size; i++)
  156. {
  157. int x = r.ReadInt32();
  158. int y = r.ReadInt32();
  159. points.Add(new Point(x, y));
  160. }
  161. r.Close();
  162. Refresh();
  163. }
  164. }
  165. private void onSaveAs(object sender, EventArgs e)
  166. {
  167. SaveFileDialog fd = new SaveFileDialog();
  168. fd.DefaultExt = "graph";
  169. fd.Filter = "Text files (*.pnt)|*.pnt|All files (*.*)|*.*";
  170. fd.ShowDialog();
  171. if (fd.FileName != "")
  172. {
  173. Stream s = File.OpenWrite(fd.FileName);
  174. BinaryWriter w = new BinaryWriter(s);
  175. w.Write((Int32)points.Count);
  176. points.ForEach(delegate (Point point) {
  177. w.Write((Int32)point.getx());
  178. w.Write((Int32)point.gety());
  179. });
  180. w.Close();
  181. }
  182. }
  183. private void onPaint(object sender, PaintEventArgs e)
  184. {
  185. points.ForEach(delegate (Point point) {
  186. e.Graphics.FillRectangle(Brushes.Black, point.getx(), point.gety(), 1, 1);
  187. });
  188. }
  189. private void onClick(object sender, MouseEventArgs e)
  190. {
  191. Point point = new Point(e.X, e.Y);
  192. points.Add(point);
  193. Refresh();
  194. }
  195. public static void Main(string[] args)
  196. {
  197. Application.Run(new Program());
  198. }
  199. }
  200. }
Простите за дубль, не знал в какой именно раздел обращаться.

Решение задачи: «Исправить ошибку в коде (сериализация/десериализация)»

textual
Листинг программы
  1. [STAThread]
  2.         public static void Main(string[] args)
  3.         {
  4.             Application.Run(new Program());
  5.         }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

7   голосов , оценка 4.429 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут