문제 :
VisualStudio에서 NuGet설치후 새프로젝트 생성시 빌드 오류
"이 프로젝트는 이 컴퓨터에 없는 NuGet 패키지를 참조합니다."
해결 :
1. Visual Studio 도구=>...
HTTP Error 503. The service is unavailable.
문제 :
HTTP Error 503. The service is unavailable.
해결 :
IIS7 관리자 -> 응용 프로그램 풀
해당 사이트 응용프로그램 풀 상태 중지 이면 시작 함.
만약 바로...
c# Split (문자열 분할, 자르기)
(http://link2me.tistory.com 에서 발췌)
기타 :
split를 string문자열로 자를때
word_1.Split(new string[] {"\\"}, StringSplitOptions.None)
...
c# String, string의 차이
[String]
원래 System.String
System 네임스페이스를 using System;으로 사용 -> 그냥 String 으로 써도 똑같음
[string]
System.String의 별칭
[기타]
int...
c# 배열 초기화 할때 값 넣어주는 방법
// Single-dimensional array (numbers).
int[] n1 = new int[4] {2, 4, 6, 8};
int[] n2 = new int[] {2, 4, 6, 8};
int[]...
윈도우 업데이트 다운로드 받은파일및 로그 삭제 명령어
forfiles /P "C:\Windows\SoftwareDistribution\Download" /S /M * /D -0 /C "cmd /C rmdir /s /q @path"
forfiles /P "C:\Windows\SoftwareDistribution\Download"...
피드 구독하기:
글 (Atom)