Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 입문
- SQL
- Firebird
- MFC
- WIN32 SDK
- xml
- 인스톨
- 문자열
- Visual Studio 2005
- dll
- 예제
- 시리얼 통신
- SDK
- Visual Basic
- vb
- 셋업
- 델파이
- c#
- 초보
- 파이어버드
- VB.NET
- 소니
- winsock
- 기초
- 설치
- 파라미터
- 데이터베이스
- Delphi
- PostgreSQL
- MySQL
Archives
- Today
- Total
목록any (1)
프로그래밍 노트
LINQ에서 List의 복수 값 중에 특정 문자들이 포함하고 특정 문자들이 포함하지 않는 조건
LINQ에서 List의 복수 값 중에 특정 문자들이 포함하고 특정 문자들이 포함하지 않게하기 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LinqTest01 { class Person { private string mName = string.Empty; private string mAddress = string.Empty; private string mJob = string.Empty; public string Name { get { return this.mName; } } public string Address { get {..
C#/기타
2019. 10. 19. 23:13