분류 전체보기 (393) 썸네일형 리스트형 Null조건 연산자(?) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp3 { class Program { static void Main(string[] args) { string s = null; if (s!=null&&s.Length>1) { Console.WriteLine("사랑해"); } else { Console.WriteLine("싫어해"); } if (s?.Length>1) { Console.WriteLine("사랑해"); } else { Console.WriteLine("싫어해"); } } } } s != null && .. String.Concat / String.Join/Contain /IndexOf using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp2 { class Program { static void Main(string[] args) { string[] animals = { "mouse", "cow", "tiger", "rabbit", "dragon" }; foreach (var item in animals) { Console.Write(item+" "); } string s = string.Concat(animals); Console.WriteLine("\n"+s); s = string.Join(",".. STRING.SPLIT() 메소드 사용/ * 피라미드 중첩문으로 만들기 using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace ConsoleApp14 { class Program { static void Main(string[] args) { for (int i = 5; i > 0; i--) { //Console.WriteLine("*"); for (int j = i; j < 6; j++) { Console.Write("*"); } Console.WriteLine(); } for (int i = 1; i < 6; i++) { for (int.. SMART FACTORY-패킷 단위 출력 using System; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Net; using System.Text.RegularExpressions; using System.Windows.Forms; using System.Xml.Schema; using SharpPcap; using WindowsFormsApp4; namespace _20200826_001 { // 1. 설치 - 캡쳐 - 목록 - 선택 - 오픈 - 캡쳐 // 2. 캡쳐된 것을 요리하는 과정 public partial class Form1 : Form { public Form1() {.. SMART FACTORY-코딩 테스트 문자열 내림차순 리턴 문제 설명 문자열 s에 나타나는 문자를 큰것부터 작은 순으로 정렬해 새로운 문자열을 리턴하는 함수, solution을 완성해주세요. s는 영문 대소문자로만 구성되어 있으며, 대문자는 소문자보다 작은 것으로 간주합니다. 제한 사항 str은 길이 1 이상인 문자열입니다. 입출력 예 Zbcdefg gfedcbZ public class Solution { public string solution(string s) { string answer = "Zbcdefg"; char[] a = s.ToCharArray(); System.Array.Sort(a); System.Array.Reverse(a); answer = new string(a); return answer; } } toCharArray() public c.. RANDOM 클라스 사용해보기/선형탐색과 이진 탐색 ← using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp4 { class Program { static void Main(string[] args) { Random random = new Random(); int[] vs = new int[50]; for (int i = 0; i < vs.Length; i++) { vs[i] = random.Next(1000); } Array.Sort(vs); PrintArray(vs); Console.WriteLine("검색할 숫자를 입력하세요"); int key = int.Par.. 보안 공부 (스니핑) using System; using System.Windows.Forms; using SharpPcap; namespace WindowsFormsApp3 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { //MessageBox.Show(SharpPcap.Version.VersionString); CaptureDeviceList NicList = CaptureDeviceList.Instance; //장치 목록을 가져.. iComparable 상속 받아서 int IComparable.CompareTo(object obj)써보기! using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApp1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Fil.. 이전 1 ··· 43 44 45 46 47 48 49 50 다음