C# partial 클래스의 디자인창 없애기
[System.ComponentModel.DesignerCategory("")] 메인 클래스가 아닌 추가 생성한 partial 클래스 상단에 적어주시면 됩니다
- C# Programming
- · 2019. 2. 13.
C#에는 2의 100승을 담을 수 있는 자료형이 없습니다 그래서 문자열로 표현해봤습니다 코드가 굉장히 복잡하네요 더 간단한 방법이 있을건데 저는 모르니까.ㅋㅋ 생각나는데로 해봤습니다 using System; using System.Collections.Generic; namespace ConsoleApp1 { class Program { static void Main(string[] args) { List z = new List(); z.Add(1); int plus = 0; int t = 0; for (int k = 0; k = 0; i--) { t = z[i] * 2; if (t >= 10) { z[i] = t % 10 + plus; plus = 1; } else { z[i] = t + plus; p..
public static string Encrypt(string textToEncrypt, string key) { RijndaelManaged rijndaelCipher = new RijndaelManaged(); rijndaelCipher.Mode = CipherMode.CBC; rijndaelCipher.Padding = PaddingMode.PKCS7; rijndaelCipher.KeySize = 128; rijndaelCipher.BlockSize = 128; byte[] pwdBytes = Encoding.UTF8.GetBytes(key); byte[] keyBytes = new byte[16]; int len = pwdBytes.Length; if (len > keyBytes.Length) ..
실시간 체결 데이터로 분봉을 만들때 현재 시간이 몇분봉에 속하는지 구하는 예제입니다 예제는 2분봉이구요 6자리 시간이 string 값으로 내려오면 datetime값으로 변경합니다. string time= K3_.GetFieldData("OutBlock", "time"); Datetime d = DatetimeFormat(time); if(d.Minute % 2 == 0 && d.Second > 0) // 짝수 분이고 초가 0> 보다 크면 다음 분봉이어서 시간에 2분을 더해줍니다. { d = d.AddMinutes(2); Console.WriteLine("분봉 = " + new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day,d.Hour,..
EncryptString(암호키, 암호화할 문자열); private static string EncryptString(string InputText, string KeyString) { RijndaelManaged RijndaelCipher = new RijndaelManaged(); byte[] PlainText = Encoding.Unicode.GetBytes(InputText); byte[] Salt = Encoding.ASCII.GetBytes(KeyString.Length.ToString()); PasswordDeriveBytes SecureKey = new PasswordDeriveBytes(KeyString, Salt); ICryptoTransform Encryptor = RijndaelCi..
[System.ComponentModel.DesignerCategory("")] 메인 클래스가 아닌 추가 생성한 partial 클래스 상단에 적어주시면 됩니다
Substring (int startIndex) - 원하는 위치부터 끝까지 string s = "0123456789";Console.WriteLine(s.substring(5)); // 결과 "56789" Console.WriteLine(s.substring(7)); // 결과 "789" Substring (int startIndex, int length) - 원하는 위치부터 문자 개수 Console.WriteLine(s.substring(5,2)); // 문자열 인덱스 5부터 2개의 문자를 반환 // 결과 "56"