c# tag

485 questions


1 answers
82 views
0
Firebase does not update user profiles.

https://firebase.google.com/docs/auth/unity/manage-users?hl=koI've been following this guide. using System.Collections;using System.Collections.Generic;using UnityEngine;using Firebase.Auth;using Unit...

2 years ago

1 answers
39 views
0
I wonder what happens to the next code execution.

package jpastart.reserve.application;import java.util.Optional;import javax.persistence.EntityManager;import jpastart.jpa.EMF;import jpastart.reserve.model.User;public class UserService { public UserS...

2 years ago

1 answers
100 views
0
Calling the dll file to Python Ctypes/Live Beginners

My friend wrote a calculation program in C language (not a calculator program) I want to decorate the graphic UI with C and Python.First of all, I converted my friend's C file into a .dll file. I know...

2 years ago

1 answers
100 views
0
How to use Google Maps in Unity url error

Unity wants to use Google Maps.There are a few sets out, but I'm going to do it myself.using UnityEngine;using System.Collections;public class GoogleMapAPI : MonoBehaviour{ private bool loadingMap; st...

2 years ago

1 answers
108 views
0
This is a question related to mysql linkage in unity5

I coded to access the root server without going through the php server.If you run it within the Unity program, the db integration works well.But if you try to build and run it as an exe file,ArgumentE...

2 years ago

2 answers
40 views
0
Can't we use Delegate in c# to extract this function a little bit more neatly?

public static void TrigFunctions_Example(string pathNfilename) { FileStream fsWrite = new FileStream(pathNfilename, FileMode.Create, FileAccess.Write); StreamWriter sWriter = new StreamWriter(fsWrit...

c#
2 years ago

2 answers
80 views
0
WebClient.Download question.

I'm trying to download a file from Unity using WebClient.using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.UI;using System.Net;public class FileDownload : M...

2 years ago

1 answers
43 views
0
C# This is a question about JArray.

[ { A : 1, B : 2, C : 3, D : 4, E : 5, F : 6 }, { A : 1, B : 2, C : 3, D : 4, E : 5, F : 6 }]I'd like to parse JSON as above. private void ParseJson(String json) { // // JObject obj = J...

c#
2 years ago

1 answers
39 views
0
C# Can I change my default webview browser to Chrome in Explorer?

C# Can I change my default webview browser to Chrome in Explorer?It's not chrome. It's Firefox.ㅠ

c#
2 years ago

1 answers
36 views
0
C# Method Question

public void Hello() { Console.WriteLine(Hello); } public void NiceOne() { Hello(); Console.WriteLine(LiceOne); }Is it possible to access the instance method within the same class?

c#
2 years ago
« - 46 - »

© 2024 OneMinuteCode. All rights reserved.