473,473 Members | 1,833 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

memcmp and memcpy in c# ?

Hi,

I'm new to c# an missing functions like memcmp and memcpy from C.
Is there something similar ?

cu
Alex

Jan 11 '06 #1
7 12715
Alex,

To copy value types (such as structures) what you need to do is just using
the assignment operator; this will make a shallow copy of the struct
members.

I would say almost all reference types that represent block of data in the
memory (e.g. arrays and collections) CopyTo
method. Actually this method is defined in the ICollection interface.

The other way you can create a copy of an object's data is to call Clone if
the type implements ICloneable interface.

In addition there is a method defined on the level of the Object class
called MemberwiseClone. This mehod creates a shallow copy of the object. The
method is protected and is meant to be used for implementing *clone*.

As far as string comparison goes you can use the CompareXXXX methods of
the String class.

--
HTH
Stoitcho Goutsev (100)

"Alex Stark" <st****@online.nospam> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

I'm new to c# an missing functions like memcmp and memcpy from C.
Is there something similar ?

cu
Alex

Jan 11 '06 #2
Hi Stoicho,

thanks for your answer. But I don't really understand what you mean.
All I have is a bytearray b1 and I want to kow is, if a second bytearray b2
is part somewhere in b1.

In C the code is a simple :

int section_init(uchar *tra, int tralen)
{
int i, j=0;
uchar buf[256];

if (memcmp(tra+4, "LOCKED", 6))
return(0);
...................
}

How is such a simple think in C# realizable ? Sure, I can build a string
and in this case this will be the easiest way.....but I think, there are
some
more complex issues, where string conversation will not the best way.

Thanks for your help !!!!!!!!!!!

Alex
"Stoitcho Goutsev (100)" <10*@100.com> schrieb im Newsbeitrag
news:O6**************@TK2MSFTNGP12.phx.gbl...
Alex,

To copy value types (such as structures) what you need to do is just using
the assignment operator; this will make a shallow copy of the struct
members.

I would say almost all reference types that represent block of data in the
memory (e.g. arrays and collections) CopyTo
method. Actually this method is defined in the ICollection interface.

The other way you can create a copy of an object's data is to call Clone
if the type implements ICloneable interface.

In addition there is a method defined on the level of the Object class
called MemberwiseClone. This mehod creates a shallow copy of the object.
The method is protected and is meant to be used for implementing *clone*.

As far as string comparison goes you can use the CompareXXXX methods of
the String class.

--
HTH
Stoitcho Goutsev (100)

"Alex Stark" <st****@online.nospam> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

I'm new to c# an missing functions like memcmp and memcpy from C.
Is there something similar ?

cu
Alex


Jan 11 '06 #3
"Alex Stark" <st****@online.nospam> wrote in
news:e4**************@TK2MSFTNGP10.phx.gbl:
Hi Stoicho,

thanks for your answer. But I don't really understand what you mean.
All I have is a bytearray b1 and I want to kow is, if a second
bytearray b2 is part somewhere in b1.

In C the code is a simple :

int section_init(uchar *tra, int tralen)
{
int i, j=0;
uchar buf[256];

if (memcmp(tra+4, "LOCKED", 6))
return(0);
..................
}

How is such a simple think in C# realizable ? Sure, I can build a
string and in this case this will be the easiest way.....but I think,
there are some
more complex issues, where string conversation will not the best way.

Thanks for your help !!!!!!!!!!!

Alex
"Stoitcho Goutsev (100)" <10*@100.com> schrieb im Newsbeitrag
news:O6**************@TK2MSFTNGP12.phx.gbl...
Alex,

To copy value types (such as structures) what you need to do is just
using the assignment operator; this will make a shallow copy of the
struct members.

I would say almost all reference types that represent block of data
in the memory (e.g. arrays and collections) CopyTo
method. Actually this method is defined in the ICollection interface.

The other way you can create a copy of an object's data is to call
Clone if the type implements ICloneable interface.

In addition there is a method defined on the level of the Object
class called MemberwiseClone. This mehod creates a shallow copy of
the object. The method is protected and is meant to be used for
implementing *clone*.

As far as string comparison goes you can use the CompareXXXX
methods of the String class.

--
HTH
Stoitcho Goutsev (100)

"Alex Stark" <st****@online.nospam> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

I'm new to c# an missing functions like memcmp and memcpy from C.
Is there something similar ?

cu
Alex




Have a look at the Buffer class.
Jan 11 '06 #4
Alex,

In .NET array of bytes is different than array of chars which is totally
different than strings. Further mode Char is 16 bit where Byte is 8.
If you want to look for a sub string use strings. Otherwise you
need to write your own code for lookup consecutive bytes in a byte array.

There is no equivalent of memcmp in managed framework.

--
HTH
Stoitcho Goutsev (100)

"Alex Stark" <st****@online.nospam> wrote in message
news:e4**************@TK2MSFTNGP10.phx.gbl...
Hi Stoicho,

thanks for your answer. But I don't really understand what you mean.
All I have is a bytearray b1 and I want to kow is, if a second bytearray
b2
is part somewhere in b1.

In C the code is a simple :

int section_init(uchar *tra, int tralen)
{
int i, j=0;
uchar buf[256];

if (memcmp(tra+4, "LOCKED", 6))
return(0);
..................
}

How is such a simple think in C# realizable ? Sure, I can build a string
and in this case this will be the easiest way.....but I think, there are
some
more complex issues, where string conversation will not the best way.

Thanks for your help !!!!!!!!!!!

Alex
"Stoitcho Goutsev (100)" <10*@100.com> schrieb im Newsbeitrag
news:O6**************@TK2MSFTNGP12.phx.gbl...
Alex,

To copy value types (such as structures) what you need to do is just
using the assignment operator; this will make a shallow copy of the
struct members.

I would say almost all reference types that represent block of data in
the memory (e.g. arrays and collections) CopyTo
method. Actually this method is defined in the ICollection interface.

The other way you can create a copy of an object's data is to call Clone
if the type implements ICloneable interface.

In addition there is a method defined on the level of the Object class
called MemberwiseClone. This mehod creates a shallow copy of the object.
The method is protected and is meant to be used for implementing *clone*.

As far as string comparison goes you can use the CompareXXXX methods of
the String class.

--
HTH
Stoitcho Goutsev (100)

"Alex Stark" <st****@online.nospam> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi,

I'm new to c# an missing functions like memcmp and memcpy from C.
Is there something similar ?

cu
Alex



Jan 11 '06 #5
Stoitcho Goutsev (100) <10*@100.com> wrote:
In .NET array of bytes is different than array of chars which is totally
different than strings. Further mode Char is 16 bit where Byte is 8.
If you want to look for a sub string use strings. Otherwise you
need to write your own code for lookup consecutive bytes in a byte array.

There is no equivalent of memcmp in managed framework.


Note that there's Buffer.BlockCopy, which isn't really an equivalent,
but can sometimes be used in the same situations.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Jan 11 '06 #6
Hello Jon Skeet [C# MVP],
Stoitcho Goutsev (100) <10*@100.com> wrote:
In .NET array of bytes is different than array of chars which is
totally
different than strings. Further mode Char is 16 bit where Byte is 8.
If you want to look for a sub string use strings. Otherwise you
need to write your own code for lookup consecutive bytes in a byte
array.
There is no equivalent of memcmp in managed framework.

Note that there's Buffer.BlockCopy, which isn't really an equivalent,
but can sometimes be used in the same situations.


Note that memcmp = memory compare, as he's searching for a byte sequence
in a larger array.
Don't think there's anything present in the .NET framework that does exactly
that, at least neither Buffer or Array seems to have any methods that compare
parts of arrays against each other.

--
Lasse Vågsæther Karlsen
http://usinglvkblog.blogspot.com/
mailto:la***@vkarlsen.no
PGP KeyID: 0x2A42A1C2
Jan 12 '06 #7
Lasse Våqsæther Karlsen wrote:
There is no equivalent of memcmp in managed framework.

Note that there's Buffer.BlockCopy, which isn't really an equivalent,
but can sometimes be used in the same situations.


Note that memcmp = memory compare, as he's searching for a byte sequence
in a larger array.


Oops - you're absolutely right. I misread Stoitcho's post. Doh!

Jon

Jan 12 '06 #8

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

Similar topics

16
by: rajkumar | last post by:
I have a struct like struct MyStruct { int a; int b; int c: bool d; bool e; }
4
by: blueblueblue2005 | last post by:
hi, I am reading the description of memcmp and strcmp, it seems there is no big difference between these two functions. except that memcmp takes void pointer parameters. so why string.h has these...
6
by: Sidney Cadot | last post by:
Hi all, Just browsing through my newly-acquired C99 spec, I was reading on the memcmp() function (7.21.4.1). It has a rather peculiar wording: int memcmp(const void *s1, const void *s2, size_t...
4
by: Preets | last post by:
Hi, Can anybody please tell me the difference between memcmp() and strncmp() functions ?
4
by: system55 | last post by:
which of the 2 commands are applicable in comparing an array of unsigned chars? if(strcmp(aAbsCylNumHigh, bAbsCylNumHigh)<=0 && strcmp(aAbsCylNumLow,bAbsCylNumLow)<=0 && strcmp(aSecNum,.bSecNum)<0...
39
by: Martin | last post by:
Please consider the following code fragment. Assume UINT32 is a typedef suitable for defining variables of 32 bits, and that ui32 is initialised. UINT32 ui32; /* ... */ /* assume ui32 now is...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
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...
0
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...
0
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 ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
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...

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.