Click here to Skip to main content
15,896,118 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
what is the difference between
--------------------------------------------------
C#
public Test(int someParam) : this()
{
}
 
public Test(int someParam, string anotherParam) : this(someParam)
{
}


-----
AND
-----

>>

C#
public overload  Test(int someParam) : this()
{
}
 
public  overload Test(int someParam, string anotherParam) : this(someParam)
{
}
Posted
Updated 27-May-13 12:50pm
v2

1 solution

i Found my answer in this blog
---

Public Class DataManager

Public MustOverride Function LoadDataSet(ByVal TableName as String, ByVal SQL as SQLObject) as DataSet

Public Function LoadDataSet(ByVal TableName as String, ByVal SQL as String) as DataSet
Return LoadDataSet(TableName, new SQLObject(SQL))
End Function
End Class

Public Class OracleDataManager
Inherits DataManager

Public Overloads Overrides Function LoadDataSet(ByVal TableName as String, ByVal SQLObj as SQLObject) as DataSet
// code here
End Function

End Class


>>
http://stackoverflow.com/questions/1173257/overloads-keyword-in-vb-net[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900