๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ


Programming

(4)
[Go] ์ž…๋ฌธ ๋‹ค์šด๋กœ๋“œ https://go.dev/dl/ Downloads - The Go Programming Language Downloads After downloading a binary release suitable for your system, please follow the installation instructions. If you are building from source, follow the source installation instructions. See the release history for more information about Go releases go.dev package main func main() { println("Test") } http://golang.site/go/art..
์ •๊ทœํ‘œํ˜„์‹ https://heropy.blog/2018/10/28/regexp/ ์ •๊ทœํ‘œํ˜„์‹, ์ด๋ ‡๊ฒŒ ์‹œ์ž‘ํ•˜์ž! ๋งค์ผ ์“ฐ๋Š” ๊ฒƒ๋„, ๊ฐ€๋…์„ฑ์ด ์ข‹์€ ๊ฒƒ๋„ ์•„๋‹ˆ์ง€๋งŒ, ๋ชจ๋ฅด๋ฉด ์•ˆ๋˜๋Š” ์ •๊ทœํ‘œํ˜„์‹. ์ €๋Š” ์ด๋ ‡๊ฒŒ ๊ณต๋ถ€ํ•˜๊ธฐ ์‹œ์ž‘ํ–ˆ์Šต๋‹ˆ๋‹ค! (์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ๋ฅผ ๊ธฐ์ค€์œผ๋กœ ์„ค๋ช…ํ•ฉ๋‹ˆ๋‹ค) heropy.blog https://regex101.com/ regex101: build, test, and debug regex Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/.NET. regex101.com
Coding study sites https://refactoring.guru/design-patterns Design Patterns Design Patterns Design patterns are typical solutions to common problems in software design. Each pattern is like a blueprint that you can customize to solve a particular design problem in your code. Catalog of patterns List of 22 classic design patterns, refactoring.guru https://elice.io/ ์˜ฌ์ธ์› ๋””์ง€ํ„ธ ๊ต์œก ํ”Œ๋žซํผ - ์—˜๋ฆฌ์Šค ์šฐ๋ฆฌ ๋ชจ๋‘๋ฅผ ์œ„ํ•œ ๊ต์‹ค, ์—˜๋ฆฌ์Šค์™€ ํ•จ๊ป˜ ๋” ๋‚˜์€ ๊ธฐํšŒ..
[C#] list to csv using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public class Person { public string name; public int age; public Person(string name, int age) { this.name = name; this.age = age; } }; namespace ConsoleApp1 { class Program { static void Main(string[] args) { List pList = new List(); pList.Add(new Person("J", 20)); pList.Add(new Pe..