Search results for query: *

  • Users: benjm-ma
  • Content: Threads
  • Order by date
  1. benjm-ma

    Do you use an IDE? What IDE do you use? If you don't what's your workflow like?

    Personally, I use a text editor and the command line. I'm proficient with vi and find it way too convenient as opposed to clicking around a UI. However, as of recently I have been using Sublime and really enjoy it. It has a "vintage mode" which allows you to navigate a file using vi controls. I...
  2. benjm-ma

    Question Terminal.Gui (Gui.cs) - previous window should disappear

    Hey guys, Want to know if anyone has worked with this curses like TUI library. What I am trying to do is super basic but I haven't figured out how it's done using this library: User is presented with a window with button elements. Once you click one of these buttons a new window should appear...
  3. benjm-ma

    Question Linux Debugger Recommendations : Is GDB Effective in Debugging C# Code? (Mono Platform)

    I also write C programs and would like to know if I can also use GDB to the fullest of its capabilities when debugging C# programs. I know it's possible and needs to be configured, but wanted to know if some features are lacking when it comes to debugging C# code. Is it not worth using in favor...
  4. benjm-ma

    Resolved 'Use of possibly unassigned field' when passing struct to method.

    Hey Guys, Here is the code I am trying to compile: using System; class Exercise { static void Main() { Point p; p.x = 40.0; p.y = 45.0; if (NormalizePoint(out p)) { Console.WriteLine ($"x normalized to {p.x}\ny normalized to {p.y}")...
Back
Top Bottom