473,671 Members | 2,504 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

virtual override

Hi,

In a mangaed C++ wrapper class, I have some pure virtual function
declarations:

public __gc __abstract class CESCSAPICommand
{
......
// Test only
virtual bool Test(int i1, int i2) = 0;

// SendPacket() takes address and size of a byte array buffer:
virtual bool SendPacket(unsi gned char packetAddress __nogc[], int
packetSize) = 0;
.....
}

When trying to override these in a C# application, this works fine for a
simple Test() method just using 2 intergers.
However, I have no chance to override SendPacket()!

My relevant C# code looks as follows:

class CESCSMyAPIComma nd: CESCSAPICommand
{
.....
public override bool Test(int i1, int i2) {...} // compiles
and works fine, but....

public override bool SendPacket(byte [] packetAddress , int
packetSize)
{
.....
socket.Send(pac ketAddress , 0, packetSize, 0);
.....
}

// ... causes compiler error s:
'ConsoleApplica tion1.CESCSMyAP ICommand' does not implement
inherited abstract
member 'CESCSAPIComman d.SendPacket(by te*, int)'

'ConsoleApplica tion1.CESCSMyAP ICommand' .SendPacket(byt e[],
int)': no suitable method found to override
....
}

What is wrong? In other words: how do I correclty declare my pure
virtual function SendPacket(buff erAddress,buffe rSize) in managed C and
override it in a C# application so that I cann pass the parameters to
Socket:Send() ??

Thanks in advance
Urs

PS: remove leading / trailing ns_, _ns from e-mail address

Nov 15 '05 #1
1 4735
Urs,

I believe that you want something like this:

virtual bool SendPacket(byte packetAddress __gc[], int packetSize) = 0;

The __gc indicates that the array is a managed array.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Urs Wigger" <ns_urs.wigger@ leica-geosystems_ns.c om> wrote in message
news:e2******** ******@TK2MSFTN GP12.phx.gbl...
Hi,

In a mangaed C++ wrapper class, I have some pure virtual function
declarations:

public __gc __abstract class CESCSAPICommand
{
......
// Test only
virtual bool Test(int i1, int i2) = 0;

// SendPacket() takes address and size of a byte array buffer:
virtual bool SendPacket(unsi gned char packetAddress __nogc[], int
packetSize) = 0;
.....
}

When trying to override these in a C# application, this works fine for a
simple Test() method just using 2 intergers.
However, I have no chance to override SendPacket()!

My relevant C# code looks as follows:

class CESCSMyAPIComma nd: CESCSAPICommand
{
.....
public override bool Test(int i1, int i2) {...} // compiles
and works fine, but....

public override bool SendPacket(byte [] packetAddress , int
packetSize)
{
.....
socket.Send(pac ketAddress , 0, packetSize, 0);
.....
}

// ... causes compiler error s:
'ConsoleApplica tion1.CESCSMyAP ICommand' does not implement
inherited abstract
member 'CESCSAPIComman d.SendPacket(by te*, int)'

'ConsoleApplica tion1.CESCSMyAP ICommand' .SendPacket(byt e[],
int)': no suitable method found to override
....
}

What is wrong? In other words: how do I correclty declare my pure
virtual function SendPacket(buff erAddress,buffe rSize) in managed C and
override it in a C# application so that I cann pass the parameters to
Socket:Send() ??

Thanks in advance
Urs

PS: remove leading / trailing ns_, _ns from e-mail address

Nov 15 '05 #2

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

Similar topics

32
4509
by: Adrian Herscu | last post by:
Hi all, In which circumstances it is appropriate to declare methods as non-virtual? Thanx, Adrian.
4
2216
by: Rafael Veronezi | last post by:
I have some questions about override in inheritance, and virtual members. I know that you can you override a method by two ways in C#, one, is overriding with the new keyword, like: public new bool Equals(object obj) {} Another is using the override keyword, like: public override bool Equals(object obj) {}
14
12120
by: JPRoot | last post by:
Hi I use the following syntax to have events inherited from base to child classes which works nicely (virtual and override keyword on events). But I am wondering if it is a "supported" way of using events since I never saw it used anywhere in MSDN documentation/samples?! Or it will just break when I upgrade to .NET Framework 2.x in the coming years namespace MyNamespac public delegate void MyDel() public class MyBase public virtual...
8
2890
by: JPRoot | last post by:
Hi M. Jeffrey Tan, Just hopping you didn't forget me? :) Thanks JPRoot ----- \"Jeffrey Tan\" wrote: -----
4
2215
by: Jazper Manto | last post by:
hi what is the difference between virtual / override and new? until now i only knew the virtual / override thing. thanx for hint. Jazper //--- new ---------------------------------------- public class MyBaseA { public void Invoke() {}
5
2608
by: Mark Broadbent | last post by:
Oh yes its that chestnut again! Ive gone over the following (http://www.yoda.arachsys.com/csharp/faq/ -thanks Jon!) again regarding this subject and performed a few of my own tests. I have two classes yClass which inherits xClass. xClass has a virtual method which simply writes a line of text stating its origin, yClass implements the same method which writes a line of text stating its origin also (i.e. "From yClass"). I ran the...
15
2541
by: John Salerno | last post by:
Hi all. I have a question about virtual and override methods. Please forgive the elementary nature! First off, let me quote Programming in the Key of C#: "Any virtual method overridden with 'override' remains a virtual method for further descendent classes." Now here's my question: Let's say you have base class A, and subclasses B and C. Class A contains a virtual method, and B contains an override method. If C didn't have an...
5
4530
by: Marcel Hug | last post by:
Hi NG ! I'm new in C# and I'm reading a book about the fundamentals and concepts. In the chapter Methods it's written to use virtual, if i would like to override the method in a subclass. This I've to do by using override. It's also written, that's possible to "hide" the base class method by using the new key word. Because I've already written some C# code and I didn't know anything
8
1609
by: Karsten Schramm | last post by:
Hi, when I run the following code: using System; namespace ConsoleApplication22 { class Program {
4
6566
by: David Zha0 | last post by:
Hi, "when we call a virtual method, the runtime will check the instance who called the method and then choose the suitable override method, this may causes the performance drop down", is this right? And, why not use "new" instead of using "virtual"? And the last question, what is the differences between a abstract method and a interface?
0
8483
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
8402
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
8825
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...
1
8605
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8676
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7445
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...
1
6237
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5703
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();...
2
2062
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.