Search results for query: *

  • Users: cfrank2000
  • Content: Threads
  • Order by date
  1. C

    Question trying to build a list of temperatures - datastrucure needed for count

    using System; using System.IO; using System.Text; using System.Linq; using System.Collections.Generic; namespace metjelentes { using System; class mystruct { public string telepulesKod { get; set; } public string[] mertErtekek { get; set; } public string[]...
  2. C

    Question data type mismatch

    I have code part with data type mismatch that stops the running program/source code. using System; using System.IO; using System.Text; using System.Collections; using System.Collections.Generic; namespace ConsoleApp2karater1 { class Program { class mystruct{ public...
  3. C

    conversion problem

    Hi thank you for helping me previously. at the moment I am facing a conversion issue. I managed to get the list of characters to check its characters against another string to count the same characters. I need help in this matter. the faulty part is : if (dt2.kar == str1[i2])...
  4. C

    textbox placeholder gives error

    Hi I try to use in c# form textbox a placeholder following a tutorial but I've got 6 error, can I get help? thank you. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using...
  5. C

    Resolved string comparison causes error msg

    I have a string and I would like to compare its content with a string from a record list and I get the following error: Severity Code Description Project File Line Suppression State Error CS0019 Operator '==' cannot be applied to operands of type 'ArrayList' and 'string'...
  6. C

    reading text file with streamreader in object

    I try to read a text file in an object but I get error message that I don't understand please help me. I need to do this homework. the error msg is Severity Code Description Project File Line Suppression State Error CS1955 Non-invocable member 'StreamReader' cannot be...
  7. C

    should return class type data but I get error msg

    Hi I am doing my c# homework, szezonar (sezon price) function should return class type data but I get error Severity Code Description Project File Line Suppression State Error CS0161 'Program.szezonar(int, int)': not all code paths return a value szalloda1...
  8. C

    Resolved record list doesn't take values from txt file, loop not running.

    I try to read 'record data' from text file in a record list. unfortunately the loop not working and other things might not work, please help me, thank you, frank. using System; using System.IO; using System.Text; using System.Collections.Generic; namespace szalloda1 { public class...
  9. C

    Question record type arrays/lists

    Hi my name is frank struggling with record type arrays/lists (pascal programing analogies). I am trying to build kind of record type array or list but as a beginner I don't understand how does it work, specially accessing it by reline or by row, work with it, display it. I was thinking about...
  10. C

    Question count characters

    I don't understand why I can not count the selected characters, please help me, thank you. using System; using System.Collections; namespace ConsoleApp2karater1 { class Program { struct mystruct{ public char kar; public int a; } static void...
Back
Top Bottom