일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- oracle
- scrapy
- tensorflow
- vscode
- 크롤링
- Python
- MX Component
- Visual Studio Code
- rs485
- 티스토리 초대장
- 장고
- MEAN Stack
- django
- Serial
- pymssql
- 파이썬
- matplot
- M2M
- 텐서플로우
- rs422
- c#
- MSSQL
- 오라클
- 딥러닝
- windows10
- sql developer
- PYTHON MSSQL
- 윈도우10
- 자본주의
- MSSQL PYTHON
- Today
- Total
목록Language/C# (91)
안까먹을라고 쓰는 블로그
https://docs.microsoft.com/ko-kr/dotnet/api/system.web.security.antixss.antixssencoder.htmlencode?view=netframework-4.8 https://rules.sonarsource.com/csharp/type/Vulnerability/RSPEC-5131 Rules explorer rules.sonarsource.com https://useful-coding-dictionary.tistory.com/entry/Cross-Site-Scripting-XSS Cross Site Scripting (XSS) Cross Site Scripting(XSS) 란? 게시글과 같은 페이지에, 공격자가 악성 스크립트를 삽입하여, 사용자의 정보를..
딜레이 함수 private void Delay_Manual(int iDelay) { // 현재시같은 넣어준다. DateTime ThisMoment = DateTime.Now; // 딜레이 시간에 맞춰 Term값을 구한다. TimeSpan duration = new TimeSpan(0, 0, 0, 0, iDelay * 1000); // 딜레이 시간에 맞춘 Term이 더해진, 종료시간을 구한다. DateTime AfterWards = ThisMoment.Add(duration); while (true) { ThisMoment = DateTime.Now; // 현재 메시지 큐에있는 모든 Windows 메시지를 처리합니다. System.Windows.Forms.Application.DoEvents(); // 종..
C# 기본 문법 (전체적으로 3번 보기) http://www.csharpstudy.com/CSharp/CSharp-Intro.aspx C# 윈폼 (전체적으로 2번 보기) http://www.csharpstudy.com/WinForms/WinForms-Intro.aspx C# SQL연동 (SQL 부분만 2번 보기) http://www.csharpstudy.com/Data/SQL-connection-pooling.aspx
일반적으로는 Trim() 이나 Replace(" ", "")를 사용하면, 공백이 제거되나, 공백이 제거가 안되어.. 아래으 방법으로 해결! string.Concat(sTemp.Where(c => !char.IsWhiteSpace(c))) sTemp = "((15 - NowTemp) * 0.00106) + 1 "; // 공백 제거가 안됨....?? sTemp = sTemp.Trim(); // 결과 값 : ((15 - NowTemp) * 0.00106) + 1 sTemp = sTemp.Replace(" ", ""); // 결과 값 : ((15 - NowTemp) * 0.00106) + 1 // 공백 제거 성공!! sTemp = string.Concat(sTemp.Where(c => !char.IsWhiteS..
문자열을 byte배열로 변환 string sTemp = "가나다라마바사"; byte[] bTemps = Encoding.Default.GetBytes(sTemp); byte 배열을 문자열로 변환 string sTemp = "가나다라마바사"; byte[] bTemp s= Encoding.Default.GetBytes(sTemp); string sTemp2 = Encoding.Default.GetString(bTemp); 숫자형을 byte배열로 변환 int iTemp = 12345; byte[] bTemp = BitConverter.GetBytes(iTemp); 2byte 2개를 4byte로 만들기 (Int16 *2 => Int32) // 자동화 분야 통신에서 2byte받아서, 더 큰 수를 만들어야 할때 사..
0보다 크면,, 숫자를 보여주고, 아니면 공백으로 표시 private double? ParsingToDouble(string sTemp) { if (Convert.ToDouble(sTemp) > 0) { return Convert.ToDouble(sTemp); } else { return null; } }
- 일반 : 기본 사용 MessageBox.Show("저장실패 - Ex : " + Ex.TostringToString()) - 경고 : 경고이미지 및 상단제목.... MessageBox.Show("설정값은 숫자만 입력할 수 있습니다!", "오류", MessageBoxButtons.OK, MessageBoxIcon.Warning); - 확인기능 if (MessageBox.Show("데이터를 삭제하시겠습니까??", "기준정보삭제", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1) == DialogResult.Yes) { // Yes - 처리할 내용 } else { // No - 처리할 내용 }
https://vmpo.tistory.com/55?category=731824 [ironpython] C#에서 python 코드 실행하기 사전준비 : python이 설치되어 있어야 합니다. https://vmpo.tistory.com/entry/python-%EC%95%84%EB%82%98%EC%BD%98%EB%8B%A4anaconda-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0-%EC%9C%88%EB%8F%84%EC%9A%B0-10?cat.. vmpo.tistory.com
https://docs.microsoft.com/ko-kr/dotnet/welcome .NET 시작 .NET 기술 제품군을 시작합니다. docs.microsoft.com
■ CellMerge 이벤트 선언 gridView1.CellMerge += GridView1_CellMerge; ■ 이벤트 구현 Line이 다른데, Grade가 동일하면 병합되는 문제관련 처리 private void GridView1_CellMerge(object sender, DevExpress.XtraGrid.Views.Grid.CellMergeEventArgs e) { DevExpress.XtraGrid.Views.Grid.GridView view = sender as DevExpress.XtraGrid.Views.Grid.GridView; if (view == null) return; { if (e.Column.FieldName == "Grade") { string text1 = view.GetR..