473,938 Members | 41,795 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Overloads modifier

Hi all.

How could I convert the VB.NET "Overloads" modifier to C#?

Public Overloads Property DataSource() As Object

End Property
Grateful.

--
Fabio Negri Cicotti
Software Engineer
Nov 19 '05 #1
3 1284
"Fabio Negri Cicotti [MCP]" <ci*****@hotmai l.com> wrote in message
news:uU******** *****@TK2MSFTNG P11.phx.gbl...
Hi all.

How could I convert the VB.NET "Overloads" modifier to C#?

Public Overloads Property DataSource() As Object

End Property


You don't need "Overloads" in C#. It's assumed.

John Saunders
Nov 19 '05 #2
public override object DataSource
{
}

Now you do know that is C# there are overloaded methods right?

public static Employee GetEmployee( string name );
public static Employee GetEmployee( int id );

bill

"Fabio Negri Cicotti [MCP]" <ci*****@hotmai l.com> wrote in message
news:uU******** *****@TK2MSFTNG P11.phx.gbl...
Hi all.

How could I convert the VB.NET "Overloads" modifier to C#?

Public Overloads Property DataSource() As Object

End Property
Grateful.

--
Fabio Negri Cicotti
Software Engineer

Nov 19 '05 #3
Disregard my previous dumb answer.

You can't overload properties except for the indexor of a class.

public string this[int index];
public string this[string name];

bill

"William F. Robertson, Jr." <theman_at_fdrs ucks.com> wrote in message
news:uH******** ******@TK2MSFTN GP10.phx.gbl...
public override object DataSource
{
}

Now you do know that is C# there are overloaded methods right?

public static Employee GetEmployee( string name );
public static Employee GetEmployee( int id );

bill

"Fabio Negri Cicotti [MCP]" <ci*****@hotmai l.com> wrote in message
news:uU******** *****@TK2MSFTNG P11.phx.gbl...
Hi all.

How could I convert the VB.NET "Overloads" modifier to C#?

Public Overloads Property DataSource() As Object

End Property
Grateful.

--
Fabio Negri Cicotti
Software Engineer


Nov 19 '05 #4

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

Similar topics

2
3579
by: Dan Disney | last post by:
I have read conflicting information on the access scope of VB.Net class declarations when no access modifier is specified. MSDN library documentation states "Classes that do not specify an access modifier are declared as Friend by default" However, another source, VB.Net Class Design Handbook by Wrox Press states that no a "no class access modifier results in an implicit scope of public to all assemblies". In fact, if I create a class...
2
1281
by: valamas | last post by:
Hi All How can I recode the following so that I do not repeat my code? Public Overloads Sub SetNodeImageIndex(ByVal oNode As System.Windows.Forms.TreeNode, ByVal ImageIndex As String) oNode.ImageIndex = ImageIndex oNode.SelectedImageIndex = ImageIndex
1
1124
by: Fabio Negri Cicotti [MCP] | last post by:
Hi all. How could I convert the VB.NET "Overloads" modifier to C#? Public Overloads Property DataSource() As Object End Property Grateful.
12
1758
by: Lee Silver | last post by:
In a base class I have the following 2 declarations: Overridable Sub Remove(ByVal wIndex As Integer) and Overridable Sub Remove(ByVal wValue As Object) In an immediately derived class I have the following declaration: Overloads Overrides Sub Remove(ByVal wIndex As Integer)
10
13810
by: Atif | last post by:
Hi I am here to solve a small confusion i have in "Overloads Overrides". "Overloading" says that the method's name should be same while no. of parameters and/or their datatypes should be changed either in the same class or inherited class. right? "Overriding" says that the method's signature should be same(name,no. of parameters and their datatypes) in the inherited class while implementation may change. right?
3
1758
by: Arthur Dent | last post by:
Hi all, Im just curious, what is the purpose of the keyword "Overloads" in VB nowadays? I understand conceptually what overloads are and what they do, but im a little puzzled, because if you declare two subs or properties or functions with the same name but different signatures, it seems to overload them without any problem anyway, so why
12
2407
by: André | last post by:
Hi, i'm learning working with classes. In class "classbase1", i defined an overridable function. In the class "subclass1", i defined the same function with 'Overrides'. In class "classbase2", i defined the same function and in the class "subclass2", i defined the same function with 'Overloads'. Result: i get the same output.
0
1039
by: Internet User | last post by:
According to MSDN, You should never base the security of your application on a member that is marked with the internal virtual modifier in C# (the Overloads Overridable Friend modifier in Visual Basic). Although members marked with these modifiers can only be overridden by other members within the current assembly, this rule is enforced only by the C# and Visual Basic languages. The runtime does not enforce this rule. It is therefore...
8
3762
by: Paul E Collins | last post by:
This code won't compile because "the modifier 'abstract' is not valid for this item". abstract class X { public abstract static bool operator >(X a, X b); public abstract static bool operator <(X a, X b); } Why is that? -- apart from the obvious reason that the specification doesn't
0
9963
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
11516
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
11103
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
11284
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
10652
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
9854
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
7377
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
6290
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4901
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

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.