c# .

  1. Programmable Physics

    How to know if 2 ASCII created lines in a command prompt has the same length?

    Is there a way to know if these 2 lines have the same size in pixels aka length? What code should I use to determine if they have the same length or not? Just because these perpendicular lines created with ASCII, they differ in length size according to whether they were put next to one another...
  2. Ceh9_N

    How to write simple program?

    The user enters integers from the keyboard (numbers are entered alternately, the user enters a number and presses "Enter"). The sequence of numbers ends by entering the value "0". Count the number of even and odd numbers, number of positive and negative. Requirements 1. set Unicode encoding for...
  3. Celso Calomeno

    Add txt file to a double list?

    If anyone can help me, I'm not able to convert the txt to include in the list string thePath = @"C:\Spectrum.txt"; string seq = File.ReadAllText(thePath); //read the numbers by line string[] text = Regex.Split(seq, "\t"); List<(double mz, double intensity)> ions = new List<(double mz...
  4. K

    OpenSilver 1.1

    Hi Everyone, I am glad to be on this forum with you all, it is always a source of great content and amazing advice. Speaking of which, I wanted to make a quick announcement as I am pretty sure it will be of great interest and value to some of you guys. OpenSilver 1.1 has now been released...
  5. karanugale

    Question Skype Personal integration with C#

    It's been weeks of searching everywhere but couldn't find any help and finally i'm posting my query here. I'm not finding a way to integrate Skype Personal (Not Skype Business/Lync) in my c# application. I just want to receive Skype messages on my application from the skype installed on the...
  6. S

    Resolved Buttons for single row datagridview

    Hello everybody, I would need some help, I'm creating a program, and through the datagridview function I get the data from the mysql database, but I need to be able to add buttons (with images) on some lines. at this moment it adds the button on all lines Example: If the event has associated a...
  7. Khoaaaaaaaaaaaaaaaaaaaaaa

    Question Differences between abstract class and interface?

    Differences between abstract class and interface ?
  8. C

    Question Reasoning on the class call (XAML)

    Hello ! I'm not used to programming GUIs and I'm looking for the most correct reasoning to develop my little application. I need to extract data from an HDF5 file and then call a DLL so technically, my application is not complicated but I'm wondering about the following. Knowing that on my...
  9. O

    Get Data in Live Chart

    I have a table with weather data. The table consists of an ID, the temperature and the date. I would like to have the temperature data to and the respective year in a line chart output. I want to be able to select via a dropdown menu or via a textbox the respective ID, so that for the...
  10. ivanbossa

    I am in dire need of help with a solution

    I would be really grateful!
  11. Daniel_04

    Problem with the convert string to int in Method

    using System; using System.Collections.Generic; using System.Text; namespace ConsoloAPP2._199 { class Product { public int ProductId { get; set; } public string ProductName { get; set; } public int AvailableQuantity { get; set; } public decimal...
Back
Top Bottom