Convert String To UInt 32 - CSharp System

CSharp examples for System:String Parse

Description

Convert String To UInt 32

Demo Code


using System.Text;
using System.Linq;
using System.Collections.Generic;
using System;// w  ww  .  ja va2 s  .c  om

public class Main{
        public static uint ToUInt32(byte[] bytes)
        {
            return BitConverter.ToUInt32(bytes, 0);
        }
}

Related Tutorials