473,387 Members | 1,621 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Net Remoting and Performace

Hello..
EveryOne..

i want to use the NET Remote between Server and Client.

But it was not good about the CPU Usage and sending time, whie i tested the
NET Remote.

so i write my code below..

[Server Side]

1. I made a Remote Server using TCPChannel.
try
{
m_channel = new TcpChannel(nPortNumber);
ChannelServices.RegisterChannel(m_channel, false);

RemotingConfiguration.RegisterWellKnownServiceType (typeof(CReceiverParameterFromThird), strCentralName,
WellKnownObjectMode.Singleton);
}
catch (Exception ex)
{
Console.WriteLine("CreateCentral :" + ex.Message);
return false;
}

2. And i made a some of funtions like below.
But All Of Functions are nothing to do, they just write some text through
Console.

public class CReceiverParameterFromThird : MarshalByRefObject
{

public bool CreateParameter(string strId, string strName, int
nLength)
{
Console.WriteLine("CreateParameter : {0}
{1}:{2}ms",nLength.ToString(), DateTime.Now, DateTime.Now.Millisecond);
return true;
}

[Client Side]

1.The Remote Object was created like below.
m_receiverParameter =
(CReceiverParameterFromThird)Activator.GetObject(t ypeof(CReceiverParameterFromThird), "tcp://" + strCentralIP +":" + strPortNumber + "/" + "Central");

2.The Client will call a Remote Functions.
m_receiverParameter.CreateParameter(strId, strName, nLength);

[How to Test]

1.I called a Remote Functions like below.
static void Main(string[] args)
{
CCentralClient CentralClient = new CCentralClient();

CentralClient.CreateReceiver("10.1.2.220", "7000");

for (int i = 0; i < 20000; i++)
{
CentralClient.CreateParameter("1", "PM", i);
--- any of Remote Functions.----

Thread.Sleep(TimeSpan.FromMilliseconds(100));
}
}
}
After i call a Remote Function, The CPU Usage is increased both Server and
Client
about 2%~5%.

How can i solve this kind of problem, because i want to send a lot of data
and as soon as faster from Client To Server.
anyone help me how to solve this kind of problem.
Jan 7 '08 #1
9 1224

"How to get a common name(CN) of SSL"
<Ho************************@discussions.microsoft. comwrote in message
news:73**********************************@microsof t.com...

How can i solve this kind of problem, because i want to send a lot of data
and as soon as faster from Client To Server.
anyone help me how to solve this kind of problem.
You use the Binary Formatters, serialize the data, and compress the data.
You deserialize and uncompress the data on the other side.

Jan 7 '08 #2


"Mr. Arnold" wrote:
>
"How to get a common name(CN) of SSL"
<Ho************************@discussions.microsoft. comwrote in message
news:73**********************************@microsof t.com...

How can i solve this kind of problem, because i want to send a lot of data
and as soon as faster from Client To Server.
anyone help me how to solve this kind of problem.

You use the Binary Formatters, serialize the data, and compress the data.
You deserialize and uncompress the data on the other side.

Thank you for your reply,

Could you show me a sample program about binary formatter, Serialize and
Compress the data.

because i don't know how to do that very well.


Jan 7 '08 #3
"How to get a common name(CN) of SSL"
<Ho************************@discussions.microsoft. comwrote in message
news:73**********************************@microsof t.com...
Hello..
EveryOne..

i want to use the NET Remote between Server and Client.

But it was not good about the CPU Usage and sending time, whie i tested
the
NET Remote.

so i write my code below..

[Server Side]

1. I made a Remote Server using TCPChannel.
try
{
m_channel = new TcpChannel(nPortNumber);
ChannelServices.RegisterChannel(m_channel, false);

RemotingConfiguration.RegisterWellKnownServiceType (typeof(CReceiverParameterFromThird),
strCentralName,
WellKnownObjectMode.Singleton);
}
catch (Exception ex)
{
Console.WriteLine("CreateCentral :" + ex.Message);
return false;
}

2. And i made a some of funtions like below.
But All Of Functions are nothing to do, they just write some text through
Console.

public class CReceiverParameterFromThird : MarshalByRefObject
{

public bool CreateParameter(string strId, string strName, int
nLength)
{
Console.WriteLine("CreateParameter : {0}
{1}:{2}ms",nLength.ToString(), DateTime.Now, DateTime.Now.Millisecond);
return true;
}

[Client Side]

1.The Remote Object was created like below.
m_receiverParameter =
(CReceiverParameterFromThird)Activator.GetObject(t ypeof(CReceiverParameterFromThird),
"tcp://" + strCentralIP +":" + strPortNumber + "/" + "Central");

2.The Client will call a Remote Functions.
m_receiverParameter.CreateParameter(strId, strName, nLength);

[How to Test]

1.I called a Remote Functions like below.
static void Main(string[] args)
{
CCentralClient CentralClient = new CCentralClient();

CentralClient.CreateReceiver("10.1.2.220", "7000");

for (int i = 0; i < 20000; i++)
{
CentralClient.CreateParameter("1", "PM", i);
--- any of Remote Functions.----

Thread.Sleep(TimeSpan.FromMilliseconds(100));
}
}
}
After i call a Remote Function, The CPU Usage is increased both Server and
Client
about 2%~5%.

How can i solve this kind of problem, because i want to send a lot of data
and as soon as faster from Client To Server.
anyone help me how to solve this kind of problem.


You don't actually describe a "problem", 2-5% CPU increase is not a problem.
You don't mention the measured transfer time, the expected response time and
how you measured, you also need to tell us in what context you have used
this test bed, are the clients running on the same box? If not what's the
distance between the two (LAN, WAN etc..).
And..... why do you sleep 100msec between calls?

Willy.
Jan 7 '08 #4


"Willy Denoyette [MVP]" wrote:
"How to get a common name(CN) of SSL"
<Ho************************@discussions.microsoft. comwrote in message
news:73**********************************@microsof t.com...
Hello..
EveryOne..

i want to use the NET Remote between Server and Client.

But it was not good about the CPU Usage and sending time, whie i tested
the
NET Remote.

so i write my code below..

[Server Side]

1. I made a Remote Server using TCPChannel.
try
{
m_channel = new TcpChannel(nPortNumber);
ChannelServices.RegisterChannel(m_channel, false);

RemotingConfiguration.RegisterWellKnownServiceType (typeof(CReceiverParameterFromThird),
strCentralName,
WellKnownObjectMode.Singleton);
}
catch (Exception ex)
{
Console.WriteLine("CreateCentral :" + ex.Message);
return false;
}

2. And i made a some of funtions like below.
But All Of Functions are nothing to do, they just write some text through
Console.

public class CReceiverParameterFromThird : MarshalByRefObject
{

public bool CreateParameter(string strId, string strName, int
nLength)
{
Console.WriteLine("CreateParameter : {0}
{1}:{2}ms",nLength.ToString(), DateTime.Now, DateTime.Now.Millisecond);
return true;
}

[Client Side]

1.The Remote Object was created like below.
m_receiverParameter =
(CReceiverParameterFromThird)Activator.GetObject(t ypeof(CReceiverParameterFromThird),
"tcp://" + strCentralIP +":" + strPortNumber + "/" + "Central");

2.The Client will call a Remote Functions.
m_receiverParameter.CreateParameter(strId, strName, nLength);

[How to Test]

1.I called a Remote Functions like below.
static void Main(string[] args)
{
CCentralClient CentralClient = new CCentralClient();

CentralClient.CreateReceiver("10.1.2.220", "7000");

for (int i = 0; i < 20000; i++)
{
CentralClient.CreateParameter("1", "PM", i);
--- any of Remote Functions.----

Thread.Sleep(TimeSpan.FromMilliseconds(100));
}
}
}
After i call a Remote Function, The CPU Usage is increased both Server and
Client
about 2%~5%.

How can i solve this kind of problem, because i want to send a lot of data
and as soon as faster from Client To Server.
anyone help me how to solve this kind of problem.

You don't actually describe a "problem", 2-5% CPU increase is not a problem.
You don't mention the measured transfer time, the expected response time and
how you measured, you also need to tell us in what context you have used
this test bed, are the clients running on the same box? If not what's the
distance between the two (LAN, WAN etc..).
And..... why do you sleep 100msec between calls?

Willy.
Thank you for your reply.

I have alredy mentioned something to send a lot of data to server from client.

I just send a little data for this test before making a program.

so The Cpu usage isn't good between server and client.

i want to solve this problem before making a program.

so if i call a function of Remote, then Both the Cpu Usage of Server and
Client are increased, so it isn't good for server and client,

i have tested this function in same pc or separated pc.

you can see there is a variable of i in for loop,

if The Client send a lot of data to server in same pc continually,

i found the time based of i's value from Server and Client,

Of course i also used LAN,

Actually, i want to use less than 100msec,
i think
it is difficult to control OS

Thank you...

do you have any idea to solve this problem.

if you need my code, i can give you my code..^^

bye
Jan 7 '08 #5
Could you show me a sample program about binary formatter, Serialize
and Compress the data.

because i don't know how to do that very well.
www.micrsoft.com
www.gotdotnet.com
Jan 7 '08 #6

If you're just starting out, then you might want to go straight to WCF.

WCF is a 3.0 thing, but 3.0 is just an add on to 2.0.

See:
http://sholliday.spaces.live.com/blog/cns!A68482B9628A842A!158.entry


"How to get a common name(CN) of SSL"
<Ho************************@discussions.microsoft. comwrote in message
news:73**********************************@microsof t.com...
Hello..
EveryOne..

i want to use the NET Remote between Server and Client.

But it was not good about the CPU Usage and sending time, whie i tested
the
NET Remote.

so i write my code below..

[Server Side]

1. I made a Remote Server using TCPChannel.
try
{
m_channel = new TcpChannel(nPortNumber);
ChannelServices.RegisterChannel(m_channel, false);

RemotingConfiguration.RegisterWellKnownServiceType (typeof(CReceiverParameterFromThird),
strCentralName,
WellKnownObjectMode.Singleton);
}
catch (Exception ex)
{
Console.WriteLine("CreateCentral :" + ex.Message);
return false;
}

2. And i made a some of funtions like below.
But All Of Functions are nothing to do, they just write some text through
Console.

public class CReceiverParameterFromThird : MarshalByRefObject
{

public bool CreateParameter(string strId, string strName, int
nLength)
{
Console.WriteLine("CreateParameter : {0}
{1}:{2}ms",nLength.ToString(), DateTime.Now, DateTime.Now.Millisecond);
return true;
}

[Client Side]

1.The Remote Object was created like below.
m_receiverParameter =
(CReceiverParameterFromThird)Activator.GetObject(t ypeof(CReceiverParameterFromThird),
"tcp://" + strCentralIP +":" + strPortNumber + "/" + "Central");

2.The Client will call a Remote Functions.
m_receiverParameter.CreateParameter(strId, strName, nLength);

[How to Test]

1.I called a Remote Functions like below.
static void Main(string[] args)
{
CCentralClient CentralClient = new CCentralClient();

CentralClient.CreateReceiver("10.1.2.220", "7000");

for (int i = 0; i < 20000; i++)
{
CentralClient.CreateParameter("1", "PM", i);
--- any of Remote Functions.----

Thread.Sleep(TimeSpan.FromMilliseconds(100));
}
}
}
After i call a Remote Function, The CPU Usage is increased both Server and
Client
about 2%~5%.

How can i solve this kind of problem, because i want to send a lot of data
and as soon as faster from Client To Server.
anyone help me how to solve this kind of problem.

Jan 7 '08 #7
"lightdoll" <dj******@naver.comwrote in message
news:BE**********************************@microsof t.com...
>

"Willy Denoyette [MVP]" wrote:
>"How to get a common name(CN) of SSL"
<Ho************************@discussions.microsoft .comwrote in message
news:73**********************************@microso ft.com...
Hello..
EveryOne..

i want to use the NET Remote between Server and Client.

But it was not good about the CPU Usage and sending time, whie i tested
the
NET Remote.

so i write my code below..

[Server Side]

1. I made a Remote Server using TCPChannel.
try
{
m_channel = new TcpChannel(nPortNumber);
ChannelServices.RegisterChannel(m_channel, false);

RemotingConfiguration.RegisterWellKnownServiceType (typeof(CReceiverParameterFromThird),
strCentralName,
WellKnownObjectMode.Singleton);
}
catch (Exception ex)
{
Console.WriteLine("CreateCentral :" + ex.Message);
return false;
}

2. And i made a some of funtions like below.
But All Of Functions are nothing to do, they just write some text
through
Console.

public class CReceiverParameterFromThird : MarshalByRefObject
{

public bool CreateParameter(string strId, string strName,
int
nLength)
{
Console.WriteLine("CreateParameter : {0}
{1}:{2}ms",nLength.ToString(), DateTime.Now, DateTime.Now.Millisecond);
return true;
}

[Client Side]

1.The Remote Object was created like below.
m_receiverParameter =
(CReceiverParameterFromThird)Activator.GetObject(t ypeof(CReceiverParameterFromThird),
"tcp://" + strCentralIP +":" + strPortNumber + "/" + "Central");

2.The Client will call a Remote Functions.
m_receiverParameter.CreateParameter(strId, strName, nLength);

[How to Test]

1.I called a Remote Functions like below.
static void Main(string[] args)
{
CCentralClient CentralClient = new CCentralClient();

CentralClient.CreateReceiver("10.1.2.220", "7000");

for (int i = 0; i < 20000; i++)
{
CentralClient.CreateParameter("1", "PM", i);
--- any of Remote Functions.----

Thread.Sleep(TimeSpan.FromMilliseconds(100));
}
}
}
After i call a Remote Function, The CPU Usage is increased both Server
and
Client
about 2%~5%.

How can i solve this kind of problem, because i want to send a lot of
data
and as soon as faster from Client To Server.
anyone help me how to solve this kind of problem.

You don't actually describe a "problem", 2-5% CPU increase is not a
problem.
You don't mention the measured transfer time, the expected response time
and
how you measured, you also need to tell us in what context you have used
this test bed, are the clients running on the same box? If not what's the
distance between the two (LAN, WAN etc..).
And..... why do you sleep 100msec between calls?

Willy.

Thank you for your reply.

I have alredy mentioned something to send a lot of data to server from
client.

I just send a little data for this test before making a program.

so The Cpu usage isn't good between server and client.

i want to solve this problem before making a program.

so if i call a function of Remote, then Both the Cpu Usage of Server and
Client are increased, so it isn't good for server and client,

i have tested this function in same pc or separated pc.

you can see there is a variable of i in for loop,

if The Client send a lot of data to server in same pc continually,

i found the time based of i's value from Server and Client,

Of course i also used LAN,

Actually, i want to use less than 100msec,
i think
it is difficult to control OS

Thank you...

do you have any idea to solve this problem.

if you need my code, i can give you my code..^^

bye


Hmmm... it looks like you want to call a remoted method 20000 times without
consuming CPU resources and it should not take longer than 100msec, please
correct me if I'm wrong. This is however not possible, calling methods
(whatever) will always consume CPU cycles, what else did you expect?
To know exactly how long a single call takes, you can use the Stopwatch
class and measure how long it takes to execute, say 1000 calls.
Willy.


Jan 7 '08 #8


"Willy Denoyette [MVP]" wrote:
"lightdoll" <dj******@naver.comwrote in message
news:BE**********************************@microsof t.com...


"Willy Denoyette [MVP]" wrote:
"How to get a common name(CN) of SSL"
<Ho************************@discussions.microsoft. comwrote in message
news:73**********************************@microsof t.com...
Hello..
EveryOne..

i want to use the NET Remote between Server and Client.

But it was not good about the CPU Usage and sending time, whie i tested
the
NET Remote.

so i write my code below..

[Server Side]

1. I made a Remote Server using TCPChannel.
try
{
m_channel = new TcpChannel(nPortNumber);
ChannelServices.RegisterChannel(m_channel, false);

RemotingConfiguration.RegisterWellKnownServiceType (typeof(CReceiverParameterFromThird),
strCentralName,
WellKnownObjectMode.Singleton);
}
catch (Exception ex)
{
Console.WriteLine("CreateCentral :" + ex.Message);
return false;
}

2. And i made a some of funtions like below.
But All Of Functions are nothing to do, they just write some text
through
Console.

public class CReceiverParameterFromThird : MarshalByRefObject
{

public bool CreateParameter(string strId, string strName,
int
nLength)
{
Console.WriteLine("CreateParameter : {0}
{1}:{2}ms",nLength.ToString(), DateTime.Now, DateTime.Now.Millisecond);
return true;
}

[Client Side]

1.The Remote Object was created like below.
m_receiverParameter =
(CReceiverParameterFromThird)Activator.GetObject(t ypeof(CReceiverParameterFromThird),
"tcp://" + strCentralIP +":" + strPortNumber + "/" + "Central");

2.The Client will call a Remote Functions.
m_receiverParameter.CreateParameter(strId, strName, nLength);

[How to Test]

1.I called a Remote Functions like below.
static void Main(string[] args)
{
CCentralClient CentralClient = new CCentralClient();

CentralClient.CreateReceiver("10.1.2.220", "7000");

for (int i = 0; i < 20000; i++)
{
CentralClient.CreateParameter("1", "PM", i);
--- any of Remote Functions.----

Thread.Sleep(TimeSpan.FromMilliseconds(100));
}
}
}
After i call a Remote Function, The CPU Usage is increased both Server
and
Client
about 2%~5%.

How can i solve this kind of problem, because i want to send a lot of
data
and as soon as faster from Client To Server.
anyone help me how to solve this kind of problem.

You don't actually describe a "problem", 2-5% CPU increase is not a
problem.
You don't mention the measured transfer time, the expected response time
and
how you measured, you also need to tell us in what context you have used
this test bed, are the clients running on the same box? If not what's the
distance between the two (LAN, WAN etc..).
And..... why do you sleep 100msec between calls?

Willy.
Thank you for your reply.

I have alredy mentioned something to send a lot of data to server from
client.

I just send a little data for this test before making a program.

so The Cpu usage isn't good between server and client.

i want to solve this problem before making a program.

so if i call a function of Remote, then Both the Cpu Usage of Server and
Client are increased, so it isn't good for server and client,

i have tested this function in same pc or separated pc.

you can see there is a variable of i in for loop,

if The Client send a lot of data to server in same pc continually,

i found the time based of i's value from Server and Client,

Of course i also used LAN,

Actually, i want to use less than 100msec,
i think
it is difficult to control OS

Thank you...

do you have any idea to solve this problem.

if you need my code, i can give you my code..^^

bye

Hmmm... it looks like you want to call a remoted method 20000 times without
consuming CPU resources and it should not take longer than 100msec, please
correct me if I'm wrong. This is however not possible, calling methods
(whatever) will always consume CPU cycles, what else did you expect?
To know exactly how long a single call takes, you can use the Stopwatch
class and measure how long it takes to execute, say 1000 calls.
Willy.


Thank you for your reply.

As soon as possible i want to call the faster remoted method , Not lose the
Cpu resource.

Can i...?ã…*ã…*
Jan 8 '08 #9

"How to get a common name(CN) of SSL"
<Ho************************@discussions.microsoft. comwrote in message
news:6D**********************************@microsof t.com...
>

"Mr. Arnold" wrote:
>>
"How to get a common name(CN) of SSL"
<Ho************************@discussions.microsoft .comwrote in message
news:73**********************************@microso ft.com...

How can i solve this kind of problem, because i want to send a lot of
data
and as soon as faster from Client To Server.
anyone help me how to solve this kind of problem.

You use the Binary Formatters, serialize the data, and compress the data.
You deserialize and uncompress the data on the other side.


Thank you for your reply,

Could you show me a sample program about binary formatter, Serialize and
Compress the data.

because i don't know how to do that very well.
There is a project for Contacts on how to use a Binary Formatter.

http://docs.msdnaa.net/ark_new3.0/cd...l%20CSharp.htm
What you'll want to do is have a Class/object on the client side and server
the same object that represents the data. You're going to populate the
object with your data with object accessor properties that represent your
data int, string, double, etc. You'll use the [Serializable] attribute at
the top of the class. You'll serialize the object to XML using a Memory
Stream. You send the data to the server, and you'll deserialize it back into
the object. Again, the class must be on the client and server sides.
Here is some code for compressing data. You'll notice that it's doing it
with a Memory Stream, using sharpziplib.

http://www.google.com/search?hl=en&q...=Google+Search

As for the .Net Remoting and Binary Formatter on the TCP, you can use Google
and look it up.

HTH

public static string GetFileData( string filename, SAISDataFormat format )

{

//Make sure the file exists

if(!File.Exists(filename))

throw new Exception("FILE DOES NOT EXIST!");

//Get the file data

StreamReader reader = new StreamReader( filename );

string data = reader.ReadToEnd();

reader.Close();

//Check if we should compress the data

MemoryStream ms = null;

Stream output = null;

switch(format)

{

case SAISDataFormat.XML:

return data;

case SAISDataFormat.XML_BZ:

ms = new MemoryStream();

output = new BZip2OutputStream( ms );

break;

case SAISDataFormat.XML_GZ:

ms = new MemoryStream();

output = new GZipOutputStream( ms );

break;

}

//Compress the data by writing it to the output stream

byte[] buffer = System.Text.Encoding.Unicode.GetBytes ( data );

output.Write( buffer, 0, buffer.Length );

output.Close();

//Read out the compressed data and base64 encode it

buffer = ms.GetBuffer();

ms.Close();

string outputBase64 = Convert.ToBase64String( buffer );
//Return the Base64 encoding file data

return outputBase64;

}

/// <summary>


Jan 8 '08 #10

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

Similar topics

0
by: Sean Newton | last post by:
I am absolutely bewildered by now by the Microsoft.Samples SSPI and Security assemblies. I've been trying to set these up in a very straightforward harness in the way that I'd like to be able to...
0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool This article makes a detailed comparison among SourceAnyWhere, SourceOffSite, VSS...
5
by: mayamorning123 | last post by:
A comparison among six VSS remote tools including SourceOffSite , SourceAnyWhere, VSS Connect, SourceXT, VSS Remoting, VSS.NET To view the full article, please visit...
0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool including SourceOffSite, SourceAnyWhere and VSS Remoting This article makes a detailed...
0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool This article makes a detailed comparison among SourceAnyWhere, SourceOffSite, VSS...
0
by: Martijn Damen | last post by:
Hi, At the moment I am trying to develop an application that uses another app over .net remoting and having some problems with it (ok, that is ofcourse why I am here), hope somebody can shine a...
1
by: Michael | last post by:
I'm writng a smart client app which will be used 90% within a LAN and 10% across the Internet though the Internet use may increase over time. I've set off using remoting but have noticed Microsoft...
8
by: Raju Joseph | last post by:
Hi All, I am just trying to get an opinion here. I know this is always a tough choice to make. We are in the process of converting our VB6 based Healthcare Information System (a full-fledged...
0
by: Kristian Reukauff | last post by:
Hi I have a problem with the .Net-Securty-Functions. I've got a client and a server. When I try to register a channel at the server with this line: ChannelServices.RegisterChannel(chan, false);...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
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,...
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...

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.