Search:

Type: Posts; User: Shingetsu Kurai

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    5,763

    public void function(string input)//DEBUG CONSOLE...

    public void function(string input)//DEBUG CONSOLE
    {
    string[] parts = input.Split('|');
    List<string> all = new List<string>();
    bool rest = false;
    ...
  2. Replies
    4
    Views
    5,763

    Ok. So I use this -> MethodInfo method =...

    Ok. So I use this ->

    MethodInfo method = typeof(Program).GetMethods(BindingFlags.Static | BindingFlags.NonPublic).FirstOrDefault(mi => mi.Name == name);
    Then it will return null if such a method...
  3. Replies
    4
    Views
    5,763

    C# Debug Console creation

    Hey all!
    Right now I'm working in C#, and I want it so that if a user presses '~' in my input text box, it will make the next input become a direct function.
    for example:

    class Form1 : Form
    {...
Results 1 to 3 of 3