c# tag

485 questions


2 answers
69 views
0
Detecting the absence of values when desirializing json files

You are creating a program that uses values read from json where the array is defined.The value should be the value described in the json file.Use the value of the element immediately preceding the ar...

2 years ago

3 answers
41 views
0
About the screen transition after the button is pressed automatically in the webbrowser

When I press the button on a page, the screen changes.If you operate the webbrowser automatically, the screen will not move until you remove the method (button-click event on the form).I tried refresh...

c#
2 years ago

1 answers
88 views
0
Default theme for WPF?

I learned that WPF has a theme (theme here refers to Aero.NormalColor.xaml and so on, like a link).These themes are probably published in Github.Regarding the topic, the reference article is old, so t...

2 years ago

1 answers
35 views
0
Pass value by argument (2)

I'm practicing argument passing and then trying to display the values I received from DB.I have created a DB connection/value acquisition class and also created a class to display, but how should I us...

c#
2 years ago

1 answers
88 views
0
When obtaining coordinates in IJCAD 2018 Mechanical, coordinates far away from the drawing are acquired.

We are developing C# at IJCAD 2018 Mechanical.when obtaining rectangular coordinates for the entire drawing on the programYou may get coordinates far away from the drawing.Even if you open the drawing...

2 years ago

1 answers
54 views
0
Obtaining an Index When You Click a Control Stored in a Two-Dimensional Array

C# stores Label controls in a two-dimensional array as follows:this.labels=newLabel [8,4]; for (inti=0; i<labels.GetLength(0); i++) { for (int j=0; j<labels.GetLength(1);j++) { This.labels...

2 years ago

1 answers
37 views
0
How do I cast with GetType() or Type variables without reflection?

I'm making a game with Unity's C#.A 64-bit C++ build called IL2CPP has led to no reflection.without reflection when creating API communicationsin a unique class that inherits the response class on whi...

2 years ago

4 answers
39 views
0
Please tell me the meaning and merit of adding const.

C# const precedes the variable type.The value cannot be rewritten.What happens if the price cannot be changed?What does it mean?And what are the benefits?When do I need a const?namespace test{ class p...

c#
2 years ago

1 answers
42 views
0
In Unity, C#, you want to keep the value of the object you clicked and use other methods.

C# I'm a beginner.What you want to do is Click any 3D object → Delete button is displayed.Click Delete Button → The 3D object is deleted.That's what it is.Unity has EventTrigger configuration for 3D o...

2 years ago

1 answers
74 views
0
Requests to the WCF service are resend before timeout

We have created a WCF service application and configured HTTPS to connect using a reliableSession.We then create a client program in WPF and create a service reference to the above WCF services for co...

2 years ago
« - 33 - »

© 2024 OneMinuteCode. All rights reserved.