473,749 Members | 2,636 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Multi Inherence

Is there a way to overpass the impossibility of VN.NET to accept the multi
heritage, that is to allow a class to inherit from TWO mother classes ?

--
Bernard Bourée
be*****@bouree. net
Nov 21 '05
27 2212
Well if I try to make it simple

I have one class named FLUID which contains various properties like
Pressure
Temp
FlowRate

An other class named DROP which contains properties like
Diameter
Temp
Pressure

And a last one called SECTION which should contains the properties of FLUID,
DROP plus some others.
So the solution I have now is to make a copy of the FLUID's properties
inside SECTION

But If I have to change the properties of FLUID I have to remind to do it in
both places.

Thank for your help

--
Bernard Bourée
be*****@bouree. net
"Larry Serflaten" <se*******@usin ternet.com> a écrit dans le message de
news:%2******** ********@tk2msf tngp13.phx.gbl. ..

"Bernard Bourée" <be*****@bouree .net> wrote
Is there a way to overpass the impossibility of VN.NET to accept the multi heritage, that is to allow a class to inherit from TWO mother classes ?
If there was a often used need for multiple inheritance, then MS would

have probably found a way to include it. Evidently they decided there wasn't
an absolute need that would be common enough for the functionality.

Perhaps if you describe what you want to do, someone can explain how
to do that within the confines of the language you are using....

LFS

Nov 21 '05 #11
Bernard,
In addition to the other comments, you could use one or more Interfaces:

Something like:
Public Interface IFluid
Property Pressure() As Integer
Property Temp() As Integer
Property FlowRate() As Integer
End Interface

Public Class Fluid
Implements IFluid

Private m_flowRate As Integer
Private m_pressure As Integer
Private m_temp As Integer

Public Property FlowRate() As Integer Implements IFluid.FlowRate
Get
Return m_flowRate
End Get
Set(ByVal value As Integer)
m_flowRate = value
End Set
End Property

Public Property Pressure() As Integer Implements IFluid.Pressure
Get
Return m_pressure
End Get
Set(ByVal value As Integer)
m_pressure = value
End Set
End Property

Public Property Temp() As Integer Implements IFluid.Temp
Get
Return m_temp
End Get
Set(ByVal value As Integer)
m_temp = value
End Set
End Property

End Class

Public Interface IDrop
Property Diameter() As Integer
Property Temp() As Integer
Property Pressure() As Integer
End Interface

Public Class Drop
Implements IDrop

Private m_diameter As Integer
Private m_pressure As Integer
Private m_temp As Integer

Public Property Diameter() As Integer Implements IDrop.Diameter
Get
Return m_diameter
End Get
Set(ByVal value As Integer)
m_diameter = value
End Set
End Property

Public Property Pressure() As Integer Implements IDrop.Pressure
Get
Return m_pressure
End Get
Set(ByVal value As Integer)
m_pressure = value
End Set
End Property

Public Property Temp() As Integer Implements IDrop.Temp
Get
Return m_temp
End Get
Set(ByVal value As Integer)
m_temp = value
End Set
End Property

End Class

Public Interface ISection
Inherits IFluid
Inherits IDrop
End Interface

Public Class Section
Implements ISection

Private m_flowRate As Integer
Private m_pressure As Integer
Private m_temp As Integer
Private m_diameter As Integer

Public Property FlowRate() As Integer Implements IFluid.FlowRate
Get
Return m_flowRate
End Get
Set(ByVal value As Integer)
m_flowRate = value
End Set
End Property

Public Property Pressure() As Integer Implements IFluid.Pressure ,
IDrop.Pressure
Get
Return m_pressure
End Get
Set(ByVal value As Integer)
m_pressure = value
End Set
End Property

Public Property Temp() As Integer Implements IFluid.Temp, IDrop.Temp
Get
Return m_temp
End Get
Set(ByVal value As Integer)
m_temp = value
End Set
End Property

Public Property Diameter() As Integer Implements IDrop.Diameter
Get
Return m_diameter
End Get
Set(ByVal value As Integer)
m_diameter = value
End Set
End Property

End Class

Then rather then define your parameters as the class, you would define them
as the Interface.

For Example:

Public Shared Sub ProcessFluid(By Val aFluid As IFluid)
Debug.WriteLine (CObj(aFluid).G etType().Name)
Debug.Indent()
Debug.WriteLine (aFluid.Pressur e, "Fluid.Pressure ")
Debug.WriteLine (aFluid.Temp, "Fluid.Temp ")
Debug.WriteLine (aFluid.FlowRat e, "Fluid.FlowRate ")
Debug.Unindent( )
End Sub

Public Shared Sub ProcessDrop(ByV al aDrop As IDrop)
Debug.WriteLine (CObj(aFluid).G etType().Name)
Debug.Indent()
Debug.WriteLine (aDrop.Diameter , "Drop.Diameter" )
Debug.WriteLine (aDrop.Temp, "Drop.Diameter" )
Debug.WriteLine (aDrop.Pressure , "Drop.Pressure" )
Debug.Unindent( )
End Sub
Public Shared Sub Main()
Dim aFluid As New Fluid
Dim aDrop As New Drop
Dim aSection As New Section
ProcessFluid(aF luid)
ProcessFluid(aS ection)

ProcessDrop(aDr op)
ProcessDrop(aSe ction)
End Sub

Note you don't need to use three actual interface, you can get by with only
defining Fluid or Drop in terms on an interface, then Section could inherit
from the other & implement the interface. The key is to use the Interface
instead of the class when you want to accept a Section in addition to the
class... Section could also implement ISection by using delegation to actual
Fluid & Drop objects...

Hope this helps
Jay
"Bernard Bourée" <be*****@bouree .net> wrote in message
news:ek******** ******@TK2MSFTN GP15.phx.gbl...
Well if I try to make it simple

I have one class named FLUID which contains various properties like
Pressure
Temp
FlowRate

An other class named DROP which contains properties like
Diameter
Temp
Pressure

And a last one called SECTION which should contains the properties of
FLUID,
DROP plus some others.
So the solution I have now is to make a copy of the FLUID's properties
inside SECTION

But If I have to change the properties of FLUID I have to remind to do it
in
both places.

Thank for your help

--
Bernard Bourée
be*****@bouree. net
"Larry Serflaten" <se*******@usin ternet.com> a écrit dans le message de
news:%2******** ********@tk2msf tngp13.phx.gbl. ..

"Bernard Bourée" <be*****@bouree .net> wrote
> Is there a way to overpass the impossibility of VN.NET to accept the multi > heritage, that is to allow a class to inherit from TWO mother classes ?


If there was a often used need for multiple inheritance, then MS would

have
probably found a way to include it. Evidently they decided there wasn't
an absolute need that would be common enough for the functionality.

Perhaps if you describe what you want to do, someone can explain how
to do that within the confines of the language you are using....

LFS


Nov 21 '05 #12
> C++ can do multiple inheritance, Managed C++ cannot.

Interesting --- the single inheritance thing is a "feature" of the CLR then?
--
Peace & happy computing,

Mike Labosh, MCSD
"I have no choice but to believe in free will."
Nov 21 '05 #13
Mike... True. But only if you mean implementation inheritance. The CLR
supports single inheritance of implementation and multiple inheritance
of
interfaces. In C#:

http://www.geocities.com/jeff_louie/OOP/oop9.htm
http://www.geocities.com/jeff_louie/OOP/oop16.htm

Regards,
Jeff
Interesting --- the single inheritance thing is a "feature" of the CLR

then?<
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 21 '05 #14
Just curious but if you can inheirit two interfaces and both have a property
or method that has the same name, how can you tell which one to use?

"Mike McIntyre" wrote:
Bernard,
While Microsoft's .NET programming languages do not provide
multiple-inheritence they do provide ways to implement multiple-inheritance
like behavior.

There are other .NET programming languages that do support
multiple-inheritance:

Haskell.NET (HUGS98) is Haskell as a .NET programming language that allows
multiple-inheritance.

Eifel for .NET is another .NET programming language that allows
multiple-inhieritance:

http://msdn.microsoft.com/library/de...pdc_eiffel.asp
--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"Bernard Bourée" <be*****@bouree .net> wrote in message
news:eF******** *****@TK2MSFTNG P11.phx.gbl...
Is there a way to overpass the impossibility of VN.NET to accept the multi
heritage, that is to allow a class to inherit from TWO mother classes ?

--
Bernard Bourée
be*****@bouree. net


Nov 21 '05 #15

"Bernard Bourée" <be*****@bouree .net> wrote
Well if I try to make it simple

I have one class named FLUID which contains various properties like
Pressure
Temp
FlowRate

An other class named DROP which contains properties like
Diameter
Temp
Pressure

And a last one called SECTION which should contains the properties of FLUID,
DROP plus some others.
So the solution I have now is to make a copy of the FLUID's properties
inside SECTION

But If I have to change the properties of FLUID I have to remind to do it in
both places.


What you list does not appear to be inheritance, but rather polymorphism.
Inheritance is involved when class Drop "is a" class Fluid, which may or
may not be inherited, that part wasn't clear (cute pun, eh?). But then you
have a class Section that has the properties of Fluid, and the properties of
Drop, and the properties of some others. That involves polymorphism.

If that is what you want then you need to use interfaces, like Jay suggests.

HTH
LFS

Nov 21 '05 #16

"Dennis" <De****@discuss ions.microsoft. com> wrote
Just curious but if you can inheirit two interfaces and both have a property
or method that has the same name, how can you tell which one to use?


How can _who_ tell which one to use? The user or the class developer?

When you implement a member of an interface, the member is marked:

Private Sub SomeMethod() Implements MyInterface.MyM ethod

Because both the interface and method are named, the CLR won't get confused....

LFS
Nov 21 '05 #17
consider this aircode:

Public Interface IFoo
Sub ThisMethod() 'same signature
End Interface

Public Interface IFee
Sub ThisMethod() 'same signature
End Interface

Public Class Fum Implements IFoo Implements IFee
Public Sub ThisMethod() Implements IFoo.ThisMethod
'stuff
End Sub
Public Sub ThisMethod() Implements IFee.ThisMethod
'other stuff
End Sub
End Class

I didn't try to compile it (it's late) but each method implementation is
clearly marked as to whose interface it's implementing.
--
Peace & happy computing,

Mike Labosh, MCSD
"I have no choice but to believe in free will."
Nov 21 '05 #18
Dennis,
My earlier sample shows one way of implementing two interfaces with the same
method.

Another way is to explicitly name the methods in the implementing class,
when I do this, I make the methods private:

Something like:

Public Class Section
Implements ISection

Private m_flowRate As Integer
Private m_pressure As Integer
Private m_temp As Integer
Private m_diameter As Integer

Public Property FlowRate() As Integer Implements IFluid.FlowRate
Get
Return m_flowRate
End Get
Set(ByVal value As Integer)
m_flowRate = value
End Set
End Property

Public Property Pressure() As Integer Implements IFluid.Pressure ,
IDrop.Pressure
Get
Return m_pressure
End Get
Set(ByVal value As Integer)
m_pressure = value
End Set
End Property

Public Property Temp() As Integer
Get
Return m_temp
End Get
Set(ByVal value As Integer)
m_temp = value
End Set
End Property

Private Property IFluid_Temp() As Integer Implements IDrop.Temp
Get
' do something unique for IFluid
Return m_temp
End Get
Set(ByVal value As Integer)
' do something unique for IFluid
m_temp = value
End Set
End Property

Private Property IDrop_Temp() As Integer IDrop.Temp
Get
' do something unique for IDrop
Return m_temp
End Get
Set(ByVal value As Integer)
' do something unique for IDrop
m_temp = value
End Set
End Property

Public Property Diameter() As Integer Implements IDrop.Diameter
Get
Return m_diameter
End Get
Set(ByVal value As Integer)
m_diameter = value
End Set
End Property

End Class
"Dennis" <De****@discuss ions.microsoft. com> wrote in message
news:F0******** *************** ***********@mic rosoft.com...
Just curious but if you can inheirit two interfaces and both have a
property
or method that has the same name, how can you tell which one to use?

"Mike McIntyre" wrote:
Bernard,
While Microsoft's .NET programming languages do not provide
multiple-inheritence they do provide ways to implement
multiple-inheritance
like behavior.

There are other .NET programming languages that do support
multiple-inheritance:

Haskell.NET (HUGS98) is Haskell as a .NET programming language that
allows
multiple-inheritance.

Eifel for .NET is another .NET programming language that allows
multiple-inhieritance:

http://msdn.microsoft.com/library/de...pdc_eiffel.asp
--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"Bernard Bourée" <be*****@bouree .net> wrote in message
news:eF******** *****@TK2MSFTNG P11.phx.gbl...
> Is there a way to overpass the impossibility of VN.NET to accept the
> multi
> heritage, that is to allow a class to inherit from TWO mother classes ?
>
> --
> Bernard Bourée
> be*****@bouree. net
>
>


Nov 21 '05 #19
Jay

Thank you so much for your help !!!

--
Bernard Bourée
be*****@bouree. net
"Jay B. Harlow [MVP - Outlook]" <Ja************ @msn.com> a écrit dans le
message de news:Oh******** ******@tk2msftn gp13.phx.gbl...
Bernard,
In addition to the other comments, you could use one or more Interfaces:

Something like:
Public Interface IFluid
Property Pressure() As Integer
Property Temp() As Integer
Property FlowRate() As Integer
End Interface

Public Class Fluid
Implements IFluid

Private m_flowRate As Integer
Private m_pressure As Integer
Private m_temp As Integer

Public Property FlowRate() As Integer Implements IFluid.FlowRate
Get
Return m_flowRate
End Get
Set(ByVal value As Integer)
m_flowRate = value
End Set
End Property

Public Property Pressure() As Integer Implements IFluid.Pressure
Get
Return m_pressure
End Get
Set(ByVal value As Integer)
m_pressure = value
End Set
End Property

Public Property Temp() As Integer Implements IFluid.Temp
Get
Return m_temp
End Get
Set(ByVal value As Integer)
m_temp = value
End Set
End Property

End Class

Public Interface IDrop
Property Diameter() As Integer
Property Temp() As Integer
Property Pressure() As Integer
End Interface

Public Class Drop
Implements IDrop

Private m_diameter As Integer
Private m_pressure As Integer
Private m_temp As Integer

Public Property Diameter() As Integer Implements IDrop.Diameter
Get
Return m_diameter
End Get
Set(ByVal value As Integer)
m_diameter = value
End Set
End Property

Public Property Pressure() As Integer Implements IDrop.Pressure
Get
Return m_pressure
End Get
Set(ByVal value As Integer)
m_pressure = value
End Set
End Property

Public Property Temp() As Integer Implements IDrop.Temp
Get
Return m_temp
End Get
Set(ByVal value As Integer)
m_temp = value
End Set
End Property

End Class

Public Interface ISection
Inherits IFluid
Inherits IDrop
End Interface

Public Class Section
Implements ISection

Private m_flowRate As Integer
Private m_pressure As Integer
Private m_temp As Integer
Private m_diameter As Integer

Public Property FlowRate() As Integer Implements IFluid.FlowRate
Get
Return m_flowRate
End Get
Set(ByVal value As Integer)
m_flowRate = value
End Set
End Property

Public Property Pressure() As Integer Implements IFluid.Pressure ,
IDrop.Pressure
Get
Return m_pressure
End Get
Set(ByVal value As Integer)
m_pressure = value
End Set
End Property

Public Property Temp() As Integer Implements IFluid.Temp, IDrop.Temp Get
Return m_temp
End Get
Set(ByVal value As Integer)
m_temp = value
End Set
End Property

Public Property Diameter() As Integer Implements IDrop.Diameter
Get
Return m_diameter
End Get
Set(ByVal value As Integer)
m_diameter = value
End Set
End Property

End Class

Then rather then define your parameters as the class, you would define them as the Interface.

For Example:

Public Shared Sub ProcessFluid(By Val aFluid As IFluid)
Debug.WriteLine (CObj(aFluid).G etType().Name)
Debug.Indent()
Debug.WriteLine (aFluid.Pressur e, "Fluid.Pressure ")
Debug.WriteLine (aFluid.Temp, "Fluid.Temp ")
Debug.WriteLine (aFluid.FlowRat e, "Fluid.FlowRate ")
Debug.Unindent( )
End Sub

Public Shared Sub ProcessDrop(ByV al aDrop As IDrop)
Debug.WriteLine (CObj(aFluid).G etType().Name)
Debug.Indent()
Debug.WriteLine (aDrop.Diameter , "Drop.Diameter" )
Debug.WriteLine (aDrop.Temp, "Drop.Diameter" )
Debug.WriteLine (aDrop.Pressure , "Drop.Pressure" )
Debug.Unindent( )
End Sub
Public Shared Sub Main()
Dim aFluid As New Fluid
Dim aDrop As New Drop
Dim aSection As New Section
ProcessFluid(aF luid)
ProcessFluid(aS ection)

ProcessDrop(aDr op)
ProcessDrop(aSe ction)
End Sub

Note you don't need to use three actual interface, you can get by with only defining Fluid or Drop in terms on an interface, then Section could inherit from the other & implement the interface. The key is to use the Interface
instead of the class when you want to accept a Section in addition to the
class... Section could also implement ISection by using delegation to actual Fluid & Drop objects...

Hope this helps
Jay
"Bernard Bourée" <be*****@bouree .net> wrote in message
news:ek******** ******@TK2MSFTN GP15.phx.gbl...
Well if I try to make it simple

I have one class named FLUID which contains various properties like
Pressure
Temp
FlowRate

An other class named DROP which contains properties like
Diameter
Temp
Pressure

And a last one called SECTION which should contains the properties of
FLUID,
DROP plus some others.
So the solution I have now is to make a copy of the FLUID's properties
inside SECTION

But If I have to change the properties of FLUID I have to remind to do it in
both places.

Thank for your help

--
Bernard Bourée
be*****@bouree. net
"Larry Serflaten" <se*******@usin ternet.com> a écrit dans le message de
news:%2******** ********@tk2msf tngp13.phx.gbl. ..

"Bernard Bourée" <be*****@bouree .net> wrote
> Is there a way to overpass the impossibility of VN.NET to accept the

multi
> heritage, that is to allow a class to inherit from TWO mother classes ?
If there was a often used need for multiple inheritance, then MS would

have
probably found a way to include it. Evidently they decided there wasn't an absolute need that would be common enough for the functionality.

Perhaps if you describe what you want to do, someone can explain how
to do that within the confines of the language you are using....

LFS



Nov 21 '05 #20

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

Similar topics

37
4895
by: ajikoe | last post by:
Hello, Is anyone has experiance in running python code to run multi thread parallel in multi processor. Is it possible ? Can python manage which cpu shoud do every thread? Sincerely Yours, Pujo
12
3879
by: * ProteanThread * | last post by:
but depends upon the clique: http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=954drf%24oca%241%40agate.berkeley.edu&rnum=2&prev=/groups%3Fq%3D%2522cross%2Bposting%2Bversus%2Bmulti%2Bposting%2522%26ie%3DUTF-8%26oe%3DUTF-8%26hl%3Den ...
0
3784
by: frankenberry | last post by:
I have multi-page tiff files. I need to extract individual frames from the multi-page tiffs and save them as single-page tiffs. 95% of the time I receive multi-page tiffs containing 1 or more black and white CCITT4 compressed files (frames) inside the tiff. Every now and then I receive a mixture of black and white CCITT4 and JPEG compressed files, and sometimes just multi-page tiffs with JPEG only. The code runs great when dealing with the...
6
8177
by: cody | last post by:
What are multi file assemblies good for? What are the advantages of using multiple assemblies (A.DLL+B.DLL) vs. a single multi file assembly (A.DLL+A.NETMODULE)?
4
17873
by: mimmo | last post by:
Hi! I should convert the accented letters of a string in the correspondent letters not accented. But when I compile with -Wall it give me: warning: multi-character character constant Do the problem is the charset? How I can avoid this warning? But the worst thing isn't the warning, but that the program doesn't work! The program execute all other operations well, but it don't print the converted letters: for example, in the string...
5
5997
by: Shane Story | last post by:
I can seem to get the dimensions of a frame in a multiframe tiff. After selecting activeframe, the Width/Height is still really much larger than the page's actual dimensions. When I split a TIFF to several PNG files this causes a problem, becuase the resulting image is (the page to the far left and a lot of black space surrounding it and a filesize that is larger than needed. Any ideas?
5
5766
by: bobwansink | last post by:
Hi, I'm relatively new to programming and I would like to create a C++ multi user program. It's for a project for school. This means I will have to write a paper about the theory too. Does anyone know a good place to start looking for some theory on the subject of multi user applications? I know only bits and pieces, like about transactions, but a compendium of possible approches to multi user programming would be very appreciated!
0
2328
by: Sabri.Pllana | last post by:
We apologize if you receive multiple copies of this call for papers. *********************************************************************** 2008 International Workshop on Multi-Core Computing Systems (MuCoCoS'08) Barcelona, Spain, March 4 - 7, 2008; in conjunction with CISIS'08. <http://www.par.univie.ac.at/~pllana/mucocos08> *********************************************************************** Context
1
9314
by: mknoll217 | last post by:
I am recieving this error from my code: The multi-part identifier "PAR.UniqueID" could not be bound. The multi-part identifier "Salary.UniqueID" could not be bound. The multi-part identifier "PAR.UniqueID" could not be bound. The multi-part identifier "PAR.PAR_Status" could not be bound. The multi-part identifier "Salary.New_Salary" could not be bound. The multi-part identifier "Salary.UniqueID" could not be bound. The multi-part...
0
8997
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9568
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
9389
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
8257
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6079
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
4709
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...
1
3320
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
2794
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2218
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.