c# tag

485 questions


1 answers
36 views
0
shallow radiation deep radiation

using System;namespace CopyingArray{ class MainApp { static void CopyArray<T>(T[] source, T[] target) { for (int i = 0; i < source.Length; i++) { target[i] = source[i]; } } static vo...

c#
2 years ago

1 answers
126 views
0
It's a question from UNI.T

void OnTriggerEnter2D (Collider other) { if (other.gameObject.CompareTag (bad)) { Destroy (gameObject); } I have to make my object disappear, but it doesn't work

2 years ago

2 answers
47 views
0
I want to force shut down the system in C#.

Programming C#.There was a situation where I had to force my computer to shut down.I googled Process.Start (shutdown, /s/f/t 0);There's roughly this way.However, without running Notepad and saving dat...

c#
2 years ago

1 answers
95 views
0
How do I use functions like final in java in C#?

How do I use functions like final in java in C#?


2 answers
49 views
0
Here's a question for the c# operator.

Hi, everyone.I am currently a VS2013 user.During open source analysis public int NumColumns => Bounds?NumColumns ?? 0;I found a part that declares in form, but I'm confused because it seems to be s...

2 years ago

1 answers
117 views
0
c# I have a question for your web browser!

Hi, everyone. Assuming you create a web browser using c#Using the webbrowser class provided in c#,It's just that you add an already installed Internet Explorer to your Windows form Isn't it hard to sa...


1 answers
131 views
0
How to load images using C# from UNI.T engine

Unity Engine uses the C# code to create an image window on the screen

2 years ago

1 answers
41 views
0
C# new keyword

If a method has the same name as the method inherited from the base class from the derived class, Therefore, if you want to hide the methods inherited from the underlying class, you can hide them thro...

c#
2 years ago

1 answers
114 views
0
This is an Android media scan question from Unity (c#).

I don't see the files I downloaded from the gallery right after downloading the images or videos, so I think I need to scan the mediaNo matter how much you search, most of them are Java, and since you...

2 years ago

1 answers
85 views
0
There are no conditional statements in the for statement in this code. Why?

I'm changing the C++ algorithm to C#, and I saw a for statement like this. for (u = b.size(), v = b.back(); u--; v = p[v]) b[u] = v;Errors appear on C# and work well on C++.I don't know what this repe...

2 years ago
« - 45 - »

© 2024 OneMinuteCode. All rights reserved.