본문 바로가기

c#(유데미)

(8)
뒤끝 GameData 게임정보 CRUD 하는법 튜토리얼 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using BackEnd; /// /// 게임 정보를 이용하기 위한 간단한 튜토리얼 입니다. /// 뒤끝 SDK를 사용하는 방법은 뒤끝 SDK 개발자 문서를 참고해주세요. /// 회원가입/로그인 : https://developer.thebackend.io/unity3d/guide/bmember/signup_login/ /// 게임 정보 생성 : https://developer.thebackend.io/unity3d/guide/gameDataV3/insert /// 게임 정보 조회 : https://developer.thebac..
c#:jaggedArray(가변 길이 배열) using System; namespace Hello_World { public class EmptyClass { static void Main(string[] args) { //declare jaggedAraay int[][] jaggedArray = new int[3][]; jaggedArray[0] = new int[5]; jaggedArray[1] = new int[3]; jaggedArray[2] = new int[2]; jaggedArray[0] = new int[] { 2, 3, 5, 7, 11 }; jaggedArray[1] = new int[] { 1, 2, 3 }; jaggedArray[2] = new int[] { 13, 21 }; //alternative way int[][] jag..
C#:객체 Car클래스 메서드 이용하기/배열arrays(3D차원) 1. Car 객체 이용해서 Car클래스에 있는 메서드 이용하기:매개변수 이용X //Car.cs using System; namespace Hello_World { internal class Car { //Constructor public Car() { Console.WriteLine("Car was created"); } public void Drive() { Console.WriteLine("Car is driving"); } public void Stop() { Console.WriteLine("Car is stopped"); } } } //practice.cs using System; namespace Hello_World { class Program { static void Main(string[..
c#:do while 구문/loops/평균점수값 구하기 이름 수 20자 넘으면 그만쓰게 하기=>쓴 이름들 wholeText로 붙이기 using System; namespace Hello_World { class Program { static void Main(string[] args) { int lenghtOfText = 0; string wholeText = ""; do { Console.WriteLine("Please enter the name of a friend"); string nameOfAFriend = Console.ReadLine(); int currentLenght = nameOfAFriend.Length; lenghtOfText += currentLenght; wholeText += nameOfAFriend; } while (lenghtOf..
c#기초: 로그인,회원가입/최고점수 누군지 코드만들기 c#기초: 로그인,회원가입 코드 만들기 using System; namespace Hello_World { class Program { static string username; static string password; static void Main(string[] args) { Register(); Login(); Console.Read(); } public static void Register() { Console.WriteLine("Please enter your username"); username = Console.ReadLine(); Console.WriteLine("Please enter your password"); password = Console.ReadLine(); Console.W..
C#:user input
c# WriteLine(),ReadLine()/ string with a slash, colon \\var,let,const c# WriteLine(),ReadLine()/ string with a slash, colon \\ var: null로 바꿀수 없음, 값을 변화할수 있음.
c#씨샵: 기초 변수 선언 substring, ToLower,Trim,IndexOf,Concat(),IsNullOrWhiteSpace/문자열""구분해주는법, \n:줄바꿈 c#씨샵: 기초 변수 선언 substring, ToLower,Trim,IndexOf,Concat(),IsNullOrWhiteSpace 문자열""구분해주는법 \벡티 빽틱 쓰면 됨 \백틱를 문자열로 쓰고싶으면 이렇게 \\두번 넣어주면 됨 \n쓰면 줄바꿈 가능