C#/기초
-
[C#] LINQ SelectManyC#/기초 2025. 4. 3. 15:45
y는 l.yeares https://jettstream.tistory.com/121 C# Select vs SelectManySelect() 메서드 객체에 담긴 여러 데이터 중에서 원하는 부분만 손쉽게 추출하여 새로운 형태의 컬렉션으로 생성한다. public class Program { public class Winner { public string name; public int[] years; } public staticjettstream.tistory.com
-
[C#] // 주석C#/기초 2025. 3. 28. 08:51
https://learn.microsoft.com/ko-kr/dotnet/csharp/language-reference/xmldoc/recommended-tags 권장 XML 문서 태그 - C# reference이 문서에서는 XML 문서의 권장 유형 태그와 멤버에 대한 구문 및 정의를 제공합니다.learn.microsoft.com Example : 이 요소의 값은 Visual Studio의 IntelliSense에 표시됩니다. cref *: 이 요소의 값은 Visual Studio의 IntelliSense에 표시됩니다. **
-
[C#] NUnit TestC#/기초 2025. 3. 27. 17:12
https://dlsenfl.tistory.com/entry/C-UnitTest [C#] UnitTestNUnit vs. XUnit vs. MSTestWe now compare the C# unit testing frameworks from an attribute usage point of view along with a simple example, which demonstrates the code flow.Attributes in test frameworksIrrespective of the C# unit testing framework, attributdlsenfl.tistory.com # 생성자: 테스트 클래스에서생성자는 전체 테스트 통틀어 한번 실행.# [Setup] : [Test] 마다 실행...
-
[C#] CLR (Common Language Runtime)C#/기초 2025. 3. 18. 11:10
개념설명 https://lineho.tistory.com/34 [기초(2)/C#] CLR (Common Language Runtime) 이란?1. CLR 1) 개념 - CLR은 .NET Framework의 기본이자 .NET Framework의 VM(Virtual Machine, 가상머신) 요소이다. - CLR은 JAVA 의 VM과 비슷한 역할을 하게된다.(애초 C#만들던 사람이 JAVA 흉내 좀 냄.) 자세한 내용은 (202lineho.tistory.com
-
[C#] ASP.NET CoreC#/기초 2025. 2. 26. 14:09
MVC ModelViewController https://www.youtube.com/watch?v=RWXKysImabs https://www.youtube.com/watch?v=AopeJjkcRvU https://github.com/haedalprogramming/DotnetCsharp GitHub - haedalprogramming/DotnetCsharp: C# Dotnet으로 배우는 백엔드 기초C# Dotnet으로 배우는 백엔드 기초. Contribute to haedalprogramming/DotnetCsharp development by creating an account on GitHub.github.com
-
[C#] 정규식, RegexC#/기초 2025. 2. 18. 15:26
EX) SINT (-12[0-8]|-1[01][0-9]|-[1-9][0-9]?|0|[1-9][0-9]?|1[01][0-9]|12[0-7]) # 해석-120~128 or -100~109, -110~-119 or -1~-9, -10 ~ -99 or 0 or 1~9, 10 ~ 99 or 100~119 or 120~127 EX)TextEdit SpinEdit https://jeongwoo.tistory.com/82 [Regex] 정규식 / 정규표현식 (Regular Expression, Regex)개요 정규식을 사용하기 위해서는 패턴, 기호, 플래그, 메서드를 알아야한다. 정규식 docs 사이트 링크: https://developer.mozilla.org/en-US/docs/Web/J..
-
[C#] object to List<>C#/기초 2025. 2. 12. 11:04
상황 EX) CommandParameter로 Items Array를 object전달 object로 Array 를 담은 형태로 전달 받음 var tag = ((IEnumerable)obj).Cast().ToList(); List로 Casting List로 Casting https://stackoverflow.com/questions/632570/cast-received-object-to-a-listobject-or-ienumerableobject or IEnumerable" data-og-description="I'm trying to perform the following cast private void MyMethod(object myObject) { if(myObject is IEnumera..