C# में BitConverter.ToInt32 () विधि का उपयोग बाइट सरणी में निर्दिष्ट स्थान पर चार बाइट्स से परिवर्तित 32-बिट हस्ताक्षरित पूर्णांक को वापस करने के लिए किया जाता है।
सिंटैक्स
वाक्य रचना इस प्रकार है -
public static int ToInt32 (byte[] val, int begnIndex);
ऊपर, वैल बाइट सरणी है, जबकि begnIndex वैल के भीतर शुरुआती स्थिति है।
उदाहरण
आइए अब एक उदाहरण देखें -
using System; public class Demo { public static void Main(){ byte[] arr = { 10, 20, 30, 40, 50}; Console.WriteLine("Byte Array = {0} ", BitConverter.ToString(arr)); for (int i = 1; i < arr.Length - 3; i = i + 4) { int res = BitConverter.ToInt32(arr, i); Console.WriteLine("\nValue = "+arr[i]); Console.WriteLine("Result = "+res); } } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Byte Array = 0A-14-1E-28-32 Value = 20 Result = 841489940
उदाहरण
आइए अब एक और उदाहरण देखें -
using System; public class Demo { public static void Main(){ byte[] arr = { 0, 0, 10, 15, 20, 26, 32, 34, 40}; Console.WriteLine("Byte Array = {0} ", BitConverter.ToString(arr)); for (int i = 1; i < arr.Length - 3; i = i + 4) { int res = BitConverter.ToInt32(arr, i); Console.WriteLine("\nValue = "+arr[i]); Console.WriteLine("Result = "+res); } } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Byte Array = 00-00-0A-0F-14-1A-20-22-28 Value = 0 Result = 336529920 Value = 26 Result = 673325082