#helpme

  1. riya

    Resolved get value multiple map inside list

    Hi guys, I am very new to c#, i want to fetch data from below structure. Can someone please help me how can i fetch same. "replicableInsuranceDetails" : [ { "insurance" : "new", "insuredGender" : "M", "insuredEmploymentStatus" : "empPartTime"...
  2. riyabansal

    string manipulation in c#

    i want to fetch " Name Date Value BP 01/26/2015 15 Ht 01/26/2015 15 Wt 01/26/2015 70 BMI 01/26/2015 218.71 " date and value from this string. how can i achieve this. Thanks in advance.
  3. V

    Question What am I doing wrong?

    I'm trying to do a project for my coding class, and I need help. I've been at this for almost an hour and can't figure out why it won't work. I am working with unity and it's Visual Studio Code. What I want to happen is whenever I enable my cube, it says Creating enemy number: and then it counts...
  4. VLSkill

    Recommend the most effective way to start learning C#

    I'm learning C# mainly because my goal is to create games in Unity and I'd like to know some tips for learning it. I know the basics (variables, if statements, loops, some basics about OOP, etc.). I have passed several courses from this list, but it's difficult for me to make the next move.
  5. N

    use omnisharp to generate assets?

    Well the thing is i can't use omnisharp to generate assets and debug that's it ?
  6. I

    Matrix help

    This is the exercise. I tried to make it but couldn't. I'll be very glad if somebody would help me. Thank you in advance. There's a square matrix of row n (1 <= n <= 10). Write a program in which you have to fill in the elements of the matrix and display them. Find the sum of the odd numbers...
  7. Xade

    Resolved Invalid expression term ')'

    using UnityEngine; public class PlayerMovement : MonoBehaviour { public Rigidbody rb; public float forwardForce = 2000f; // FixedUpdate weil Physik und so void FixedUpdate () { // Add a forward force rb.AddForce(0, 0, forwardForce * Time.deltaTime)...
  8. shawnhee

    Resolved Minimize Windows Form when Clicked Outside the Application

    I want to minimize my windows form when i clicked anywhere outside it.... But this code will just close the whole program, can anyone help? I want to hide the app to taskbar, and when i press it from taskbar it shows up again....... Here is the code: protected override void...
Back
Top Bottom