Правильный вызов метода - C#
Формулировка задачи:
Листинг программы
- class Dict{
- public List<Word> words;
- public Dict(){
- words = new List<Word>();
- }
- public void AddWord(string word, string[] translates){
- words.Add(new Word(word, translates));
- }
- public void OpenFromXML(){
- Stream st =
- new FileStream(
- "путь/dictionary.txt",
- FileMode.Open);
- XmlSerializer f = new XmlSerializer(words.GetType());
- XmlReader reader = XmlReader.Create(st);
- words = (List<Word>) f.Deserialize(reader);
- st.Close();
- }
- }
Листинг программы
- class Program{
- static void Main(string[] args){
- Dict dictionary = new Dict();
- dictionary.OpenFromXML();
- Console.ReadLine();
- }
- }
Решение задачи: «Правильный вызов метода»
textual
Листинг программы
- static void Main(string[] args)
- {
- Dict dictionary = new Dict();
- dictionary.OpenFromXML();
- foreach (string word in dict.words)
- {
- Console.WriteLine(word);
- }
- Console.ReadLine();
- }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д