일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Unity
- NavMesh
- m585
- Github DeskTop Merge
- 유니티
- navigation
- m585 수리
- 오브젝트 깜빡임
- githubdesktopmerge
- 깃허브 데스크탑 병합
- nav오브젝트사이거리
- 유니티 해상도
- 유니티 합치기
- 유니티 브랜치 merge
- 유니티 해상도 설정
- unity git
- 유니티 머지
- unity 병합
- networkobject
- 깃허브 데스크탑 합치기
- stateauthority
- m590 수리
- nav거리
- networkobject.networkid
- 몬스터
- M590
- unity merge
- 유니티 해상도 변경
- networkbehaviourid
- Today
- Total
목록전체 글 (130)
집게사장의 꿈

시퀀스 요소의 IEnumerable 요소를 새로운 형식으로 평면화public static System.Collections.Generic.IEnumerable SelectMany (this System.Collections.Generic.IEnumerable source, Func> collectionSelector, Func resultSelector);반환IEnumerable해당 요소가 입력 시퀀스의 각 요소에 대해 일대다 변형 함수를 호출한 결과인 IEnumerable입니다.예외ArgumentNullException source 또는 selector가 null인 경우 this System.Collections.Generic.IEnumerable source참조할 시퀀스 데이터Func> collect..

시퀀스의 각 요소를 새 형식으로 반환하는Select반환IEnumerable해당 요소가 source의 각 요소에 대해 변형 함수를 호출한 결과인 IEnumerable입니다.예외ArgumentNullExceptionsource 또는 selector가 null인 경우 string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };var query = fruits.Select((fruit, index) => new { index, str = fruit.Substring(0, index) });foreach (var obj in query){ ..

두 시퀀스의 교집합을 구하는Intersectpublic static System.Collections.Generic.IEnumerable Intersect (this System.Collections.Generic.IEnumerable first, System.Collections.Generic.IEnumerable second);반환IEnumerable 두 시퀀스의 교집합을 이루는 요소가 들어 있는 시퀀스입니다.예외ArgumentNullExceptionfirst 또는 second가 null인 경우 int[] id1 = { 44, 26, 92, 30, 71, 38 };int[] id2 = { 39, 59, 83, 47, 26, 4, 30 };IEnumerable both = id1.Intersect(id..

MAX 최대값을 반환하는MIN 최소값을 반환하는SUM 모든 요소를 더한COUNT 요소의 개수를 세아린AVERAGE 요소들의 평균을 내는CONTAINS 요소에 어떤 요소가 포함되었는지 판단하는ALL 원하는 조건에 모든 요소가 해당하는지ANY 원하는 조건이 하나의 요소라도 해당하는지AGGREGATE 값을 누적하는시퀀스 요소 중 최대값을 반환하는 MAX 기본List longs = new List { 4294967296L, 466855135L, 81125L };long max = longs.Max();Console.WriteLine("The largest number is {0}.", max);/* This code produces the following output: The largest number is ..

지정한 키값을 기준으로 지정된 요소를 분류하는 함수GroupBy 1. 키 선택기를 이용해 시퀀스 요소를 그룹화 하고 그룹 내 요소는 지정된 함수를 통해 형식을 지정한다.public static System.Collections.Generic.IEnumerable GroupBy (this System.Collections.Generic.IEnumerable source, Func keySelector, Func elementSelector, Func,TResult> resultSelector);반환IEnumerable각 요소가 그룹과 해당 키에 대한 프로젝션을 나타내는 TResult 형식의 요소 컬렉션입니다.예외ArgumentNullExceptionsource, keySelector, elementSe..

목차AppendCastConcatRepeatReverseRangeDefaultIfEmptyFirstOrDefaultJoin 시퀀스의 끝에 값을 추가하는Appendpublic static System.Collections.Generic.IEnumerable Append (this System.Collections.Generic.IEnumerable source, TSource element);source : 참조할 값의 시퀀스element : sources에 추가할 값반환 : element로 끝나는 새로운 시퀀스예외ArgumentNullExceptionsource이(가) null인 경우 // 기존 List 에 N 숫자를 붙여서 새로운 시퀀스로 반환// Creating a list of numbersL..

문제 2초 내에 입력받을 수를 오름차순으로 정렬해라. 해결 입력 받은 수를 NLogN으로 해결하려고 했으나, 지속되는 실패로 다른 방법을 찾음 StringBuilder를 사용하여 모든 문자열을 Join 하여 사용 실제 .Sort 함수는 최적화가 잘 되어 빠른 속도를 나타낸다고 함. internal class _2751_수정렬하기2{ static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); List list = new List(); for (int i = 0; i

문제 1~500 ! 에서 뒤에서 부터 0이 아닌 수 까지의 0의 개수 해결 internal class _1676_팩토리얼0의개수{ static void Main(string[] args) { int n = int.Parse(ReadLine()), cnt = 0; for (int i = 5; i

문제 숫자 666~N 까지 중 666 숫자가 포함될 때마다 1개의 시리즈가 된다.입력 값 a 에 대해 현재 666~N 까지의 숫자를 출력EX) 해결 666~N까지의 숫자에서 666이 포함되면, 현재 시리즈 수를 ++[증가] 한다. internal class _1436_영화감독숌{ static void Main(string[] args) { int target = int.Parse(ReadLine()); int title = 665, cnt = 0; while(target != cnt) { if ((++title).ToString().Contains("666")) { cnt++..

https://learn.microsoft.com/ko-kr/dotnet/csharp/language-reference/keywords/query-keywordsFrom"데이터 소스 참조할 변수를 지정하는 것" 기본var lowNums = from num in numbers where num num : int 타입 참조받을 데이터numbers : 참조할 데이터 컬렉션 복합 From List students = [ new Student {LastName="Omelchenko", Scores= [97, 72, 81, 60]}, new Student {LastName="O'Donnell", Scores= [75, 84, 91, 39]},..