일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- WPF
- convert
- commit
- programmers
- algorithm
- Github
- Process
- coding-test
- C#
- Microsoft
- string
- windows10
- ListView
- logging
- Visual Studio
- windows
- git
- Binding
- Coding
- chashtag
- nullable
- csharp
- File
- dotNET
- .net
- log
- mysql
- IValueConverter
- tls
- 코딩테스트
- Today
- Total
목록chashtag (118)
CHashtag
결론만 알려드리겠습니다. int defaultValue = 999; int? nullableInt = null; // int wrongResult = (int)nullableInt; // System.InvalidOperationException here int result = nullableInt.GetValueOrDefault(defaultValue); // 999 감사합니다.
결론부터 알려드리겠습니다. public string[] SelectMultiFiles(string defaultPath) { string[] selectPath = null; var openFileDialog = new OpenFileDialog(); openFileDialog.Multiselect = true; if (Directory.Exists(defaultPath)) { openFileDialog.InitialDirectory = defaultPath; } else { openFileDialog.InitialDirectory = @"C:\"; } bool? result = openFileDialog.ShowDialog(); if (result.HasValue && result.Value) { se..
결론부터 알려드리겠습니다. string str = "aBcDeFg"; string upperStr = str.ToUpper(); // output : ABCDEFG string lowerStr = str.ToLower(); // output : abcdefg ToUpper vs ToUpperInvariant Microsoft 문서에 의하면 다음과 같이 정리되어 있습니다. ToUpper 대문자로 변환된 문자열의 복사본을 반환합니다. ToUpperInvariant 문화권의 대소문자 규칙을 사용하여 대문자로 변환된 String 개체의 복사본을 반환합니다. 예를 들어 터키의 경우 i의 대문자가 I가 아닌 i를 사용한다고 합니다. 따라서 다양한 나라(문화)를 지원하는 프로그램일 경우에는 ToUpperInvaria..
안녕하세요. 오늘은 DateTime과 TimeStamp간의 변환 방법에 대해 알아보도록 하겠습니다. 간단하니 바로 코드로 보여드리도록 하겠습니다. public long GetCurrentTimeStamp() { DateTime dt = DateTime.Now; return ((DateTimeOffset)dt).ToUnixTimeSeconds(); } public long DateTimeToTimeStamp(DateTime value) { return ((DateTimeOffset)value).ToUnixTimeSeconds(); } public DateTime TimeStampToDateTime(long value) { DateTime dt = new DateTime(1970, 1, 1, 0, 0, 0,..
.net framework는 사용자에게 여러 기능을 제공합니다. 예를 들자면 Int32, String, System 등과 같은 것들을요. 개발을 하다보면 .net framework에서 제공하는 함수나 속성의 정의 부분으로 가면 전체 코드가 아닌 Summary만 보이는 것을 확인하실 수 있습니다. 이는 컴파일된 dll를 참조하는 것이기 때문에 전체 코드를 볼 수 없고 해당 함수나 속성의 정의와 설명 정도만 보이는 것입니다. 그런데 .net framework에서 제공하는 기능은 실제로 어떻게 구현되어 있는지 안다면 더 효율적으로 개발할 수 있을 것입니다. 그래서 오늘은 .net framework 내부 코드 보는 법에 대해 알아보도록 하겠습니다. .net framwork 코드 보는 법 제가 오늘 추천해드릴 사..
안녕하세요. 오늘은 프로젝트의 어셈블리 버전 가져오는 법과 버전과 버전을 비교하는 방법에 대해 알아보도록 하겠습니다. 저는 처음에 숫자와 점(.)으로 분리된 버전을 어떻게 비교하여야 하나 잠깐 고민했었는데요, 다행히도 C#에서 버전 간의 비교 기능을 제공하여 해당 기능을 사용하여 버전을 비교해 보도록 하겠습니다 현재 어셈블리(Assembly) 버전 정보 얻기 // using System.Reflection; public void Main() { AssemblyName assemblyName = Assembly.GetExecutingAssembly().GetName(); Version assemblyVersion = assemblyName.Version; } 어셈블리(Assembly) 버전 비교하기 어셈블..
결론부터 알려드리겠습니다. public class MainViewModel { private string _filter = string.Empty; public string Filter { get => _filter; set { _filter = value; OnFilterChanged(); } } private ObservableCollection StringFilter { get; set; } private CollectionViewSource StringCollectionViewSource { get; set; } public ICollectionView StringCollection { get { return StringCollectionViewSource.View; } } public MainV..
public bool CheckFileLocked(string filePath) { try { FileInfo file = new FileInfo(filePath); using (FileStream stream = file.Open(FileMode.Open, FileAccess.Read, FileShare.None)) { stream.Close(); } } catch (IOException) { return true; } return false; } 감사합니다.
오늘은 폴더를 zip 파일로, zip 파일을 폴더로 만드는 방법에 대해 알아보겠습니다. 아래 코드를 구현하기 위해선 System.IO.Compression.FileSystem을 Reference에 추가하여야 합니다. static void Main(string[] args) { string directoryPath = @"D:\Record"; string zipPath = @"D:\Record.zip"; string unzipPath = @"D:\UnzipRecord"; bool zipResult = ZipDirectory(directoryPath, zipPath); bool unzipResult = UnzipFile(zipPath, unzipPath); } public static bool ZipDire..
using System.Collections.Generic; using System.IO; using System.Text; namespace CHashtag { class FileIO { static void Main(string[] args) { string inputFilePath = @"c:\temp\input.txt"; string outputFilePath = @"c:\temp\output.txt"; var inputArr = File.ReadAllLines(inputFilePath, Encoding.UTF8); // change array to list var inputList = new List(inputArr); List outputList = new List(); inputList.Fo..