본문 바로가기

c#13

Clearcove.Logging c#에서 간단하게 사용할 수 있는 로깅 라이브러리는 여러가지가 있다. 그중에서 Clearcove.logging을 간단하게 소개한다. Thread 3개로 각각 info log, error log를 비동기로 기록하는 예제 - 로깅 파일 설정 static void Main(string[] args) { // 로깅 파일 설정 var targetLogFile = new FileInfo("./AppLog.log"); Logger.LogToConsole = true; // Print log entries to console (optional). Logger.Start(targetLogFile); // Loggers will complains if you skip initialization try { Run(args).. 2021. 6. 18.
c# 차트 컨트롤, C2DPushGraph 간단한 차트 그래프를 구현하고자 하면 MSChart를 추천한다. C2DPushGraph 는 아래와 같은 케이스인 경우 간단하게 사용하기에 좋다. 오래되었음에도 불구하고 VS 2019에서 정상적으로 컴파일 된다. 2021. 4. 9.
c# 언어 표준 C# 언어 표준 관련 링크 남겨봅니다. 마소 블로그 글 참조 : devblogs.microsoft.com/dotnet/announcing-open-source-c-standardization-standards/ The ECMA C# standards committee, TC-49-TG2 is still responsible for creating the proposed standard for the C# language. What changes is that work now happens in the open, under the .NET Foundation. You can see work in progress on the standard text for C# 6. This work merges the d.. 2021. 4. 7.
Code Review checklist and guidelines for C# Developers Introduction This is a General Code Review checklist and guidelines for C# Developers, which will be served as a reference point while development. 1. Make sure that there shouldn't be any project warnings. 2. It will be much better if Code Analysis is performed on a project (with all Microsoft Rules enabled) and then remove the warnings. 3. All unused usings need to be removed. Code cleanup for.. 2021. 3. 22.
728x90