No announcements
Found 2673249 threads
-
3 Votes
Operator '&' is not defined for types '1-dimensional array of Byte' and '1-dimensional array of Byte'.
Here's a good refernce for List(of T) List(of T) meaning List(of Type) as you can have lists of any type; List(of Array), List(of ...Answered | 9 Replies | 4029 Views | Created by Timberwolf Programmers - Sunday, February 26, 2012 1:09 AM | Last reply by Troy Garner - Sunday, February 26, 2012 1:56 AM -
3 Votes
Operator '+' is not defined for types '1-dimensional array of Byte' and 'Byte'
You have left off the index on byteArray, which is an array.Answered | 4 Replies | 6528 Views | Created by hazz - Wednesday, September 22, 2010 1:48 PM | Last reply by hazz - Thursday, September 23, 2010 3:25 AM -
4 Votes
Multi-Dimensional Byte Array
Interesting observation; placing the value of 1 in a given dimension is, well, duh, I don't know how to phrase it.Answered | 10 Replies | 22161 Views | Created by User.01 - Tuesday, October 23, 2012 5:57 PM | Last reply by User.01 - Tuesday, October 23, 2012 7:56 PM -
7 Votes
Convert Integer value to byte Array
> is the right shift bit operator by shifting right, by 8 times the index, we are pushing the byte we are interested to the first position, then anding by FF to get the ...Answered | 7 Replies | 51351 Views | Created by Tammam_Koujan - Sunday, June 18, 2006 8:28 AM | Last reply by Akshay Mahajan - Thursday, April 7, 2011 4:23 PM -
0 Votes
value of type string cannot be converted to 1-dimensional array of string
The return type on your function is a string array not a string.Answered | 2 Replies | 1187 Views | Created by Aziz aka - Sunday, April 13, 2014 7:29 PM | Last reply by Aziz aka - Sunday, April 13, 2014 8:39 PM -
2 Votes
Convert Array in String to Array in Byte
Eventually, Syntaxeater's code works well and it is in a simplest form, 1 LINE.Answered | 8 Replies | 6385 Views | Created by cwcc - Wednesday, October 7, 2009 9:59 AM | Last reply by cwcc - Thursday, October 8, 2009 1:56 AM -
3 Votes
convert byte array to 16 bit integer ****URGENT****
Hello Rich_0924, You can convert a Byte array to an Int16 array by using the ByteConverter Class as ...Answered | 2 Replies | 6844 Views | Created by Rich_0924 - Saturday, August 8, 2009 9:02 PM | Last reply by Adjutor - Saturday, August 8, 2009 9:41 PM -
4 Votes
convert image to byte array
'Visual Basic 2008 - .net 3.5 - Any CPU Private Sub ShowTheBase64() TextBox1.Text = ...Answered | 7 Replies | 26979 Views | Created by rockydk - Thursday, June 10, 2010 9:28 AM | Last reply by Herfried K. Wagner - Friday, June 11, 2010 11:55 PM -
5 Votes
Convert XML data to byte array...
Just to clarify here, o don't want to convert whole xml file into byte[], I just want the data in xml nodes to be converted in to byte[] sequentially.Answered | 8 Replies | 38481 Views | Created by IamHuM - Wednesday, January 14, 2015 2:10 PM | Last reply by Elmar Boye - Thursday, January 15, 2015 9:47 AM -
1 Votes
Remove byte from an byte array
i understood how to remove last byte from array, nowhelp me in How to remove 1st byte from the array?Answered | 13 Replies | 11886 Views | Created by Avatar 123 - Tuesday, August 7, 2012 8:09 AM | Last reply by Chris-von-der-Wiese - Tuesday, August 7, 2012 2:20 PM -
0 Votes
convert byte array into xml
I find this article but am not sure whether it works for you or not, just have a ...Answered | 3 Replies | 5257 Views | Created by Thangam - Kasim - Sunday, November 9, 2014 7:42 AM | Last reply by Ashok Kumar_ - Monday, November 10, 2014 3:43 AM -
0 Votes
How to convert a hex value to byte array?
One of my favorite books on that type of project was "C Programmer's guide to Serial Communications" by Joe Campbell, but I digress.Answered | 1 Replies | 6496 Views | Created by helpuser1 - Thursday, December 1, 2011 6:00 AM | Last reply by Al Edlund - Thursday, December 1, 2011 2:18 PM -
0 Votes
Convert MAC address to byte array
Hans Passant.Answered | 5 Replies | 27523 Views | Created by EzEric - Monday, July 21, 2008 6:38 PM | Last reply by Charles1717 - Tuesday, February 8, 2011 12:11 AM -
0 Votes
Convert Image to Byte Array
You cannot extract the pixels from a Windows.UI.Xaml.Media.Imaging.Answered | 1 Replies | 533 Views | Created by Paul Wainwright - Friday, July 29, 2016 9:18 AM | Last reply by Sunteen Wu - Monday, August 1, 2016 7:49 AM -
0 Votes
convert c# class's byte array values into vb.net integer array
dim frameDatalocalcopy as Byte() frameDatalocalcopy = FrameData.Skip(17).ToArray() 'this copies the c# array into a local ...Answered | 9 Replies | 5609 Views | Created by hazz - Tuesday, June 22, 2010 3:53 PM | Last reply by hazz - Monday, June 28, 2010 5:20 PM -
0 Votes
Convert Array of strings to Array of Bytes
byte[][] byteArray; static string[] source = new string[] { "one", "two", "three"}; ...Answered | 5 Replies | 1664 Views | Created by William256 - Friday, August 30, 2013 6:39 PM | Last reply by Lincoln_MA - Friday, August 30, 2013 10:00 PM -
2 Votes
Value of type 'Double' cannot be converted to '1-dimensional array of Double'.
My intention is to get the result of a sommatory y1 is an array.Answered | 3 Replies | 2627 Views | Created by Frederico_Fagundes - Friday, April 18, 2014 8:24 PM | Last reply by Frank L. Smith - Friday, April 18, 2014 11:24 PM -
1 Votes
Convert string[] array to byte[] array
Hi All, could any one please help me out the following, I am trying to convert the following string [] to byte[], string[] ...Answered | 1 Replies | 2729 Views | Created by _prasad - Tuesday, June 24, 2014 11:58 AM | Last reply by Margriet Bruggeman - Tuesday, June 24, 2014 12:53 PM -
2 Votes
Byte Array
The text file which I saved contains the byte array information that is the pixel values ranging from 0 - 255 (black - white); maybe I am missing ...Answered | 5 Replies | 1890 Views | Created by Dynamic Kriz - Monday, February 11, 2013 6:05 AM | Last reply by Dynamic Kriz - Tuesday, February 12, 2013 4:26 AM -
0 Votes
Byte array
I had a solution converting the data bytes into a Hex string array and combining this with a Hex string array from 0000 to data array ...Answered | 3 Replies | 3780 Views | Created by groover1 - Sunday, July 10, 2011 12:16 PM | Last reply by groover1 - Wednesday, July 13, 2011 5:10 PM - Items 1 to 20 of 2673249 Next ›
No announcements