#csharp

  1. stephyap

    How to setup identityserver4 on IISExpress?

    This is my appsettings.json in my asp.netcore3.1 Api: When I run the Api it gives me the error: Document Name Value Type disco.Error "Error connecting to https://localhost:80/.well-known/openid-configuration. The SSL connection could not be established, see inner exception.." string...
  2. C

    How to get lt, lg values from string

    Hello Everyone, I have below string, i need to extract lt, lg values into new dictionary if s : N how to do this. please help me "\n{\n\t1619059179095 : \n{\n\tac : 13.0990000;\n\tlg : 58.4269473;\n\tlt : 22.4404507;\n\ts : N\n}\n}" Thanks Chandu
  3. K

    Question Anyone that can please help with this?

    uses System; public class program { public static void Main () { Random randomerare = new Random (); was randomNumber = random number. Next (1,101); int-counter = 1; var maxGuesses = 8; for (int i = 0; i <8; i ++) / * First used the variable “i”...
  4. 6atafrak

    need code for drawing this square

    Hey guys, I need help this is code for the triangle from photo protected override void OnPaint(PaintEventArgs e) { Graphics g = e.Graphics; Pen p = new Pen(Color.Blue, 2); int n = 3, m = 30; //1st int x1 = 100, y1...
  5. codify

    Question Project not opening on visual 2019

    Hello! I am trying to open this project. It should automatically open the rest of cs files which are linked to it. But when I open it my visual screen is blank.
  6. Y

    Question console does not display Chinese input string

    Hello, as my title says: on Windows 10, my console (cmd prompt) does not display Chinese input string by Console.ReadLine (but it displays Chinese non-input strings correctly). Here is my problematic code-chunk: using System; using System.IO; using System.Text; namespace 字符 { class...
  7. Sriram

    Question Nunit testcase Creation & integration

    We need to create nunit test cases for ASP.NET application. For example we need to write a test case for login page do we need to create the test case file within the solution or in different solution & then how we call the source function in the test case file
  8. P

    Updating Listbox in Another Form

    I have 2 forms. Form1 contains a list box and a button that says update. If the user selects a number from the list box and clicks the update button then form2 pops up. Then the user can enter a number in form2 and click the update button. I want the number that the use enters to be updated in...
Back
Top Bottom