c# hex to binary code
Hex sayıyı binary sayıya çeviren c# vs2022 kodunu drive linkinden indirebilirsiniz: https://drive.google.com/file/d/1GHZlN6fkNAbPEg9G5QATVK6DDP2DU79a/view?usp=sharing Kod: (C# form uygulaması arayüzüne textbox1 ve textbox2 eklenmesi yeterlidir) namespace hexTObinary { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public static string hex2bin(string value) { if (string.IsNullOrEmpty(value)) return string.Empty; retu...