코딩Coding/C#
-
C# png파일 ico으로 바꾸기코딩Coding/C# 2023. 8. 24. 07:45
using System.Drawing; { FileStream stream = File.OpenWrite(@"C:\Temp\test.ico") Bitmap bitmap = (Bitmap)Image.FromFile(@"C:\Temp\test.png"); Icon.FromHandle(bitmap.GetHicon()).Save(stream); } https://stackoverflow.com/questions/8381455/converting-png-to-ico-in-c-c converting .PNG to .ICO in C/C# I want to convert .PNG files to .ICO files. I want to do it locally with out any internet dependency ..
-
-
What Is an ASPX File?코딩Coding/C# 2023. 7. 15. 18:05
https://www.lifewire.com/what-is-an-aspx-file-2619705 What's an ASPX File and How Do You Open One? An ASPX file is an Active Server Page Extended file built for Microsoft ASP.NET. One way to open one is to rename it to whatever you expect it to be. www.lifewire.com
-
Powerful automated tool for reverse engineering Unity IL2CPP binaries코딩Coding/C# 2023. 6. 28. 07:34
https://github.com/djkaty/Il2CppInspector GitHub - djkaty/Il2CppInspector: Powerful automated tool for reverse engineering Unity IL2CPP binariesPowerful automated tool for reverse engineering Unity IL2CPP binaries - GitHub - djkaty/Il2CppInspector: Powerful automated tool for reverse engineering Unity IL2CPP binariesgithub.com Il2CppInspector helps you to reverse engineer IL2CPP applications, pr..
-
-
C# WPF 기초 강의(전역 스타일 지정 - Themes/Generic.xaml)코딩Coding/C# 2023. 5. 20. 17:21
https://youtu.be/WWvYYxamemY
-
C# Library for memory editing코딩Coding/C# 2023. 5. 14. 08:19
C# Library for memory editing https://github.com/jeffora/extemory GitHub - jeffora/extemory: C# Library for memory editingC# Library for memory editing. Contribute to jeffora/extemory development by creating an account on GitHub.github.com
-
C#12 class and struct Primary Constructors코딩Coding/C# 2023. 4. 15. 17:59
C#12 class and struct Primary Constructors https://blog.ndepend.com/c12-primary-constructor/ C#12 class and struct Primary Constructors - NDependSince C#9 we have the convenient primary constructor syntax for class record (or just record) and struct record: var p = new Person("Seth", "Gecko"); Assert.IsTrue($"{p.FirstName} {p.LastName}" == "Seth Gecko"); // p.FirstName = "Alan"; ERROR record are..