허당 레몬도리
ssl 발급
나. 설치 및 설정/Setup 2019. 7. 26. 10:58

Xshell 5 (Build 1332)Copyright (c) 2002-2017 NetSarang Computer, Inc. All rights reserved. Type `help' to learn how to use Xshell prompt.[c:\~]$ Connecting to 54.82.232.1:22...Connection established.To escape to local shell, press 'Ctrl+Alt+]'. __| __|_ ) _| ( / Amazon Linux AMI ___|\___|___| https://aws.amazon.com/amazon-linux-ami/2017.03-release-notes/8 package(s) needed for security, out of 8..

[C#] List<T>에서 Byte[]로 변경
가. 언어유형/C# 2019. 7. 17. 10:32

출처 : https://stackoverflow.com/questions/34884854/convert-listint-to-byte Convert list to byte[] How to convert list to byte[]? I could use this: byte[] bytes = lista.SelectMany(BitConverter.GetBytes).ToArray(); But it works only for list. If you have few ideas - m... stackoverflow.com List -> byte[] byte[] bytes = lista .SelectMany(x => x) .SelectMany(BitConverter.GetBytes) .ToArray(); byte[] -..

#include <>와 ""의 차이
가. 언어유형/C or C++ 2019. 7. 11. 11:21

출처 : https://gcc.gnu.org/onlinedocs/cpp/Include-Syntax.html Both user and system header files are included using the preprocessing directive ‘#include’. It has two variants:사용자와 시스템 헤더 파일은 모두 사전 처리 지침 '#include'를 사용하여 포함된다. 두 가지 변형이 있다.#include This variant is used for system header files. It searches for a file named file in a standard list of system directories. You can prepend directories to ..