c# 7

[C#] 백준 알고리즘 - 설탕 배달

문제 : 백준 알고리즘 2839번 문제 https://www.acmicpc.net/problem/2839 2839번: 설탕 배달 상근이는 요즘 설탕공장에서 설탕을 배달하고 있다. 상근이는 지금 사탕가게에 설탕을 정확하게 N킬로그램을 배달해야 한다. 설탕공장에서 만드는 설탕은 봉지에 담겨져 있다. 봉지는 3킬로그 www.acmicpc.net 풀이 : // Input int input = int.Parse(ReadLien()); // 설탕 int count = -1; // 봉지 개수 // Processing while (input > 0) { if (input % 5 == 0) { input -= 5; Count++; } else if (input % 3 == 0) { input -= 3; Count++; ..

[C#] 프로그래머스 알고리즘 - 숫자 정렬

문제 : 프로그래머스 https://programmers.co.kr/skill_checks/369129?challenge_id=947 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 : using System; using System.Collections.Generic; using System.Linq; public class Solution { public long solution(long n) { long answer = 0; char[] a = n.ToString().ToCharArray(); Array.Sort(a); Array.Reverse(..

Python & C# 이용한 Socket 통신

▶ 이번 포스팅은 C#과 Python을 이용한 간단한 Socket 통신입니다. 장비 업계 실무 간, 상위 보고 또는 RDP - FTP를 몇 번 진행한 적이 있었는데, 아무래도 연차가 별로 안되서 처음부터 끝까지 다 짜보진 않았지만, 통신에 대한 기본을 다지기 위해 공부하다가 C#과 Python을 이용한 간단한 통신 방식을 코드로 구현해봤습니다. (StackOverFlow, Youtube 참고...) -. 상위 보고 종류들?? ex) Pattern Matching %, Blob Score, Align X-Y Gap, Laser Cutting Gap 등... -. RDP - FTP ex) Image(Pattern Search, Blob 검출 Area, 특정 구간 Capture), Log Data(Align ..

C# - Effective C# 개정판, 매개 변수

▶ 선택적 매개변수와 명명된 매개 변수 선택적 매개 변수 C#4.0 이후 부터는 선택적 또는 명명된 매개 변수를 설정 할 수 있다.(C++, Java 등...) 선택적 매개 변수의 특징은 함수 선언 시, 매개 변수의 기본값을 설정 할 수 있으며, 함수 호출 시, 기본값으로 설정된 매개 변수를 선택적으로 사용 가능하다. 이때 알아야 될 점은 함수 호출 시, 선택하지 않은 인자는 매개 변수의 기본값으로 대입이 된다. → 선택적 매개 변수의 가장 큰 장점은 함수의 간결성 #region // 함수 오버로딩 3개 사용 public static void GetData1(int iNumber, double dNumber) { // } public static void GetData1(int iNumber, doubl..

C# - Coding, Naming Convention

Microsoft Docs 참조 https://docs.microsoft.com/en-us/visualstudio/ide/reference/options-text-editor-csharp-formatting?view=vs-2019 C# editor formatting options - Visual Studio (Windows) Learn how to use the Formatting options page and its subpages to set options for formatting code in the code editor when you are programming in C#. docs.microsoft.com ▣ Visual Studio, Layout 설정 → 레이아웃 규칙 1. 기본 코드 편..