Click here to Skip to main content
15,880,608 members
Home / Discussions / C#
   

C#

 
GeneralRe: Converting Byte to Decimal Pin
computerpublic12-Feb-14 7:31
computerpublic12-Feb-14 7:31 
GeneralRe: Converting Byte to Decimal Pin
harold aptroot12-Feb-14 8:55
harold aptroot12-Feb-14 8:55 
GeneralRe: Converting Byte to Decimal Pin
computerpublic12-Feb-14 9:08
computerpublic12-Feb-14 9:08 
GeneralRe: Converting Byte to Decimal Pin
harold aptroot12-Feb-14 9:16
harold aptroot12-Feb-14 9:16 
GeneralRe: Converting Byte to Decimal Pin
computerpublic12-Feb-14 9:24
computerpublic12-Feb-14 9:24 
GeneralRe: Converting Byte to Decimal Pin
harold aptroot12-Feb-14 9:49
harold aptroot12-Feb-14 9:49 
SuggestionRe: Converting Byte to Decimal Pin
Richard Deeming11-Feb-14 9:34
mveRichard Deeming11-Feb-14 9:34 
QuestionConverting Byte Array to Integer Array Pin
computerpublic11-Feb-14 4:10
computerpublic11-Feb-14 4:10 
C#
<pre>//I AM TRYING TRANPOSE ALL THE BYTE ARRAY VALUES INTO INTEGER VALUES IN THE INTEGER ARRAY
//THE LAST LINE DOES NOT WORK
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Applica
{
    class Program
    {
        static void Main(string[] args)
        {
            long Totbyte = 0;
            string filePath = null;
            DirectoryInfo da = new DirectoryInfo("C:\\Folder");
            FileInfo[] Arr = da.GetFiles();

            foreach (FileInfo ap in Arr)
            {
                Totbyte = ap.Length;
                filePath = ap.FullName;
            }

            string temPath = Path.GetTempFileName();
            byte[] data = new byte[Totbyte];////////////////////////BYTE ARRAY

            if (File.Exists(temPath))
            {
                data = File.ReadAllBytes(filePath);
                File.WriteAllBytes(temPath, data);
            }//I AM TRYING TRANPOSE ALL THE BYTE ARRAY VALUES INTO INTEGER VALUES IN THE INTEGER ARRAY
            int[] arry = new int[Totbyte];////////////////////////INTEGER ARRAY
            for (int count = 0; count < data.Length; count++)
            {
                arry[count] = Convert.ToDecimal(BitConverter.ToInt(data,count));//THIS LINE DOES NOT WORK
            }
        }
    }
}



AnswerRe: Converting Byte Array to Integer Array Pin
Pete O'Hanlon11-Feb-14 4:15
mvePete O'Hanlon11-Feb-14 4:15 
GeneralRe: Converting Byte Array to Integer Array Pin
computerpublic11-Feb-14 4:31
computerpublic11-Feb-14 4:31 
GeneralRe: Converting Byte Array to Integer Array PinPopular
Pete O'Hanlon11-Feb-14 4:42
mvePete O'Hanlon11-Feb-14 4:42 
QuestionPayment Using Visa Cards Pin
Zeyad Jalil11-Feb-14 1:58
professionalZeyad Jalil11-Feb-14 1:58 
AnswerRe: Payment Using Visa Cards Pin
V.11-Feb-14 2:18
professionalV.11-Feb-14 2:18 
AnswerRe: Payment Using Visa Cards PinPopular
OriginalGriff11-Feb-14 3:03
mveOriginalGriff11-Feb-14 3:03 
GeneralRe: Payment Using Visa Cards Pin
Dave Kreskowiak11-Feb-14 7:27
mveDave Kreskowiak11-Feb-14 7:27 
JokeRe: Payment Using Visa Cards Pin
AmitGajjar11-Feb-14 20:00
professionalAmitGajjar11-Feb-14 20:00 
GeneralRe: Payment Using Visa Cards Pin
Dave Kreskowiak12-Feb-14 4:22
mveDave Kreskowiak12-Feb-14 4:22 
GeneralRe: Payment Using Visa Cards Pin
V.11-Feb-14 20:28
professionalV.11-Feb-14 20:28 
AnswerRe: Payment Using Visa Cards Pin
GuyThiebaut11-Feb-14 9:54
professionalGuyThiebaut11-Feb-14 9:54 
QuestionIssue in Exporting Column Headers from DatagridView to Excel Pin
Mohan Subramani11-Feb-14 1:22
Mohan Subramani11-Feb-14 1:22 
AnswerRe: Issue in Exporting Column Headers from DatagridView to Excel Pin
Eddy Vluggen11-Feb-14 3:01
professionalEddy Vluggen11-Feb-14 3:01 
AnswerRe: Issue in Exporting Column Headers from DatagridView to Excel Pin
Chris Quinn11-Feb-14 5:07
Chris Quinn11-Feb-14 5:07 
Generaldatagridview c# Pin
saharmirzaei10-Feb-14 23:49
saharmirzaei10-Feb-14 23:49 
GeneralRe: datagridview c# Pin
Eddy Vluggen11-Feb-14 3:00
professionalEddy Vluggen11-Feb-14 3:00 
Generaldatagridview Pin
saharmirzaei10-Feb-14 23:48
saharmirzaei10-Feb-14 23:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.