473,657 Members | 2,426 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Class property as a Byte array

Can you define a property as type Byte array of a specific length?

I am trying to pass a byte array which is 3200 bytes in length from one form
(in which the bytes are read from a file) to another form (where the content
can be edited). I have defined a property for the editing form using the
following

Dim m_edicin(3199) As Byte
Public Property ebcdicin() As Byte
Get
edicin = m_ebcdicin
End Get
Set(ByVal Value As Byte)
m_edicin = Value
End Set
End Property

but it gives errors in the fourth and seventh lines of the type "Value of
type '1-dimensional array of Byte' cannot be converted to 'Byte'" or vice
versa.

What is the secret to make this work?

Grateful for any help.
Nov 21 '05 #1
3 11459
"simonc" <si****@discuss ions.microsoft. com> schrieb:
Can you define a property as type Byte array of a specific length?

I am trying to pass a byte array which is 3200 bytes in length from one
form
(in which the bytes are read from a file) to another form (where the
content
can be edited). I have defined a property for the editing form using the
following

Dim m_edicin(3199) As Byte
Public Property ebcdicin() As Byte
Get
edicin = m_ebcdicin
End Get
Set(ByVal Value As Byte)
m_edicin = Value
End Set
End Property


\\\
Private m_EbdicIn() As Byte

Public Property EbdicIn() As Byte()
Get
Return m_EbdicIn
End Get
Set(ByVal Value() As Byte)
If Value.Length <> 3200 Then
Throw New ArgumentExcepti on(...)
Else
m_EbdicIn = Value
End If
End Set
End Property
///

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #2
Simonc,
You need to define the type of your property as Byte() which is byte array.

Something like:
Public Property ebcdicin() As Byte()
Get
edicin = m_ebcdicin
End Get
Set(ByVal value As Byte())
m_edicin = value
End Set
End Property
Note you cannot give the actual size of the array on the property itself,
you can however check the size of the array in the property.

Also remember Arrays are references so you are actually sharing the array in
this implementation. Consider using Array.Clone to prevent sharing a single
instance of the array. (especially in the Set).

Hope this helps
Jay

"simonc" <si****@discuss ions.microsoft. com> wrote in message
news:A8******** *************** ***********@mic rosoft.com... Can you define a property as type Byte array of a specific length?

I am trying to pass a byte array which is 3200 bytes in length from one
form
(in which the bytes are read from a file) to another form (where the
content
can be edited). I have defined a property for the editing form using the
following

Dim m_edicin(3199) As Byte
Public Property ebcdicin() As Byte
Get
edicin = m_ebcdicin
End Get
Set(ByVal Value As Byte)
m_edicin = Value
End Set
End Property

but it gives errors in the fourth and seventh lines of the type "Value of
type '1-dimensional array of Byte' cannot be converted to 'Byte'" or vice
versa.

What is the secret to make this work?

Grateful for any help.

Nov 21 '05 #3
Thanks for explaining how to do this. It's a wonderful feeling when all those
wiggly blue lines under certain words disappear.

"Jay B. Harlow [MVP - Outlook]" wrote:
Simonc,
You need to define the type of your property as Byte() which is byte array.

Something like:
Public Property ebcdicin() As Byte()
Get
edicin = m_ebcdicin
End Get
Set(ByVal value As Byte())
m_edicin = value
End Set
End Property


Note you cannot give the actual size of the array on the property itself,
you can however check the size of the array in the property.

Also remember Arrays are references so you are actually sharing the array in
this implementation. Consider using Array.Clone to prevent sharing a single
instance of the array. (especially in the Set).

Hope this helps
Jay

"simonc" <si****@discuss ions.microsoft. com> wrote in message
news:A8******** *************** ***********@mic rosoft.com...
Can you define a property as type Byte array of a specific length?

I am trying to pass a byte array which is 3200 bytes in length from one
form
(in which the bytes are read from a file) to another form (where the
content
can be edited). I have defined a property for the editing form using the
following

Dim m_edicin(3199) As Byte
Public Property ebcdicin() As Byte
Get
edicin = m_ebcdicin
End Get
Set(ByVal Value As Byte)
m_edicin = Value
End Set
End Property

but it gives errors in the fourth and seventh lines of the type "Value of
type '1-dimensional array of Byte' cannot be converted to 'Byte'" or vice
versa.

What is the secret to make this work?

Grateful for any help.


Nov 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
8224
by: bengamin | last post by:
Hi, I have a C# class and two instance of the class; the class have some property. I want to compare the property value of the two instance How should i do? override == ? use delegate ?
0
4435
by: MS Newsgroups | last post by:
Hi, I am trying to store a thumbnail picture in ActiveDirectory, but am having some problems with type conversions. According to the documentation the Thumbnailphoto property in the directory is of typ OctetString, and i belive i read somewhere that i can use the convert.ToBase64string function to convert a byte array to a octetstring. This seem to be working since i can insert a image with the code:
0
3209
by: Daniel Sélen Secches | last post by:
I found a good class to do a simple FTP. Very good.... I'm posting it with the message, i hope it helps someone ============================================================== Imports System.Net
12
2670
by: Saurabh Kumar | last post by:
I have a byte array, which i need to send to a class, where it will be stored in an arraylist. I use the following property in the class to accept the byte array, but it seems that the array is getting corrupted somehow. Is my declaration wrong somewhere? Public WriteOnly Property BytesAdd() As Byte() Set(ByVal Value() As Byte) pBytes.Add(Value)
9
8315
by: craig.overton | last post by:
All, I am currently developing an FTP class in VB.NET. It's kid tested, mother approved when trying to access an FTP Server on a Windows box meaning I can connect, run commands, upload and download a file no problem. My issues come when I try to use the same class with the same commands to access an FTP server on a UNIX box. I can connect and login just fine, but after that all my commands come back "500 'PWD': command not understood."....
15
2568
by: Pucca | last post by:
I'm getting an error when I tried to use this BerConverter class in my C# code. Even though the Interent doc says that it runs on Win2000 sp4, I just thgouth I'll double check. Does anyone know if BerConverter is supported for Win2000 server? http://msdn2.microsoft.com/en-us/library/system.directoryservices.protocols.berconverter.decode.aspx -- Thanks.
12
3317
by: O.B. | last post by:
I'm trying to do a static_cast at runtime in C# and as I understand it, "as" is the keyword to use. Unfortunately, the compiler is trying to do the cast a compilation time. See below. /* TestA.cs */ namespace TEST { class TestA { public ushort val1; public ushort val2; public ushort val3;
4
2118
by: MikeJ | last post by:
make a While loop ofs = TextFileServer("somefile") string srow while (ofs=false) { srow=ofs.getRow(); Console.Writeline(srow); }
10
6364
by: Scott Townsend | last post by:
So I need to talk to a devices that expects all of the bits and bytes I sent it to be in specific places (not yet 100% defined). I wanted to create a structure/class with all of the data in it and then convert that to a byte array, pass it to the device, then get a reply and then convert that to a structure. I'm having issues with making sure what I've coded is correct. Cant figure out how to define an array in structure that is a...
0
8315
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8829
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8734
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
5633
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4164
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4323
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2733
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1962
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1627
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.