c# tag

485 questions


1 answers
144 views
0
Question about recording UNI.T screen.

using UnityEngine;public class ScreenshotMovie : MonoBehaviour{ // // The folder we place all screenshots inside. // // If the folder exists we will append numbers to create an empty folder. public st...

2 years ago

1 answers
50 views
0
Is it possible to capture packets for a specific IP with java, python, node.js, C#, etc.?

Without wireshark or other external programs,I would like to know if packet monitoring is possible for a specific IP on the network.Also, if possible, I would like to know how it is possible!!!

2 years ago

1 answers
45 views
0
Get URL from C# Web View

I want to create a C# webview and automatically receive the URL as a string whenever the web page changes in the webview.What should I do? ㅠ

c#
2 years ago

2 answers
132 views
0
c# 3d processing in console (service) applications

I want to create a service program (running on the server) that calls Wavefront format (*.obj) on the C# console, applies shader, uvmap, bumpmap, etc., and stores it as a 2d image.I tried using librar...

2 years ago

1 answers
51 views
0
I don't know why I can't read on sqlreader

I'm implementing the function of getting the value of row 3 when I press the button, but I can't read the db.private void btnSearch_Click(object sender, EventArgs e) { SqlConnection conn = new SqlCo...

c#
2 years ago

1 answers
40 views
0
I'm going to divide what's in an array in C# into two arrays.

string[] num = {1,2,3,4,5,6}; // this array is used to displayYou want to divide it into two arrays:How do I divide an array into two arrays?string[] odd = {1,3,5};string[] even = {2,4,5};

c#
2 years ago

1 answers
41 views
0
To pass the string variable value from C# to another form to another form

I want to know how to transfer the string variable value from C# to another form.Please let me know!!

c#
2 years ago

1 answers
40 views
0
C# Static constructor and default constructor call order

class Person{ static public Person Instance = new Person(Jong); string name; static Person() { Console.WriteLine(static Person() Called!); } public Person(string _name) { name = _name; Console.Writ...

c#
2 years ago

1 answers
37 views
0
I want to use ListView in C#.

I am a student who is learning C#.I'd like to use the ListView provided by Winform.There was no data in the book I bought, so I tried to apply the sauce from msdn. I applied the font, too.If you look ...

c#
2 years ago

1 answers
58 views
0
C# Interlocked Question.

Hello, everyone~While looking at the c# code, there's a part that uses Interlocked If you search, it is a command that supports 1:1 with the machine languageCompareExchange: Compare two targets and se...

2 years ago
« - 43 - »

© 2024 OneMinuteCode. All rights reserved.