No announcements
Found 2879558 threads
-
1 Votes
Function overloading: Add result type to parameter signature
Can someone on the VB language team explain why a function result type is not part of the parameter signature? If it were then function ...Answered | 1 Replies | 3700 Views | Created by Ray Causey - Monday, December 7, 2009 7:53 PM | Last reply by Rudedog2 - Monday, December 7, 2009 8:38 PM -
1 Votes
Function as parameter (Without return result type)
Hi! I'm trying to pass a method as a parameter. The method does not return anything (void) so I do it in the form of Action. The error occurs when I invoke Execute from the commands. ...Answered | 1 Replies | 319 Views | Created by HajimeSaito - Thursday, December 1, 2016 3:41 PM | Last reply by - Friday, December 2, 2016 1:14 AM -
1 Votes
parameter overloading
Hi, You need to pass generic type as a parameter. Google it, you will find many examples on that. httpAnswered | 4 Replies | 1030 Views | Created by Saswat Mohanty - Friday, July 5, 2013 5:59 AM | Last reply by Dzunisani - Monday, July 8, 2013 5:12 AM -
3 Votes
parameter overloading
same type. I want to use this function for all class. When the input parameter is changed with any of these 3 classes it should take that class object only and ...Answered | 8 Replies | 1668 Views | Created by Saswat Mohanty - Thursday, July 4, 2013 6:57 AM | Last reply by Vicente Cartas - Thursday, July 18, 2013 4:46 PM -
0 Votes
Function Overloading
Thanks David and Reed Copsey, Jr., but I would like to know where it is possible to learn in detail about the mechanism function overloading. I read known ...Answered | 6 Replies | 2856 Views | Created by volynsky - Tuesday, October 20, 2009 4:53 PM | Last reply by volynsky - Tuesday, October 20, 2009 5:57 PM -
0 Votes
Get type of function parameter
the assembly A use PEModuleUnit.Open, then I want to get the parameter types for each log function and add them into a array. But I found ...Answered | 4 Replies | 7595 Views | Created by shootingsyh - Tuesday, May 26, 2009 8:48 AM | Last reply by shootingsyh - Tuesday, June 16, 2009 6:28 AM -
1 Votes
Function Overloading not working!!!...:(
Visual C++. I read a topic called function overloading, and wrote the following code on it: // lucpp84.cpp : Program ...Answered | 4 Replies | 1109 Views | Created by viiiiiicky - Wednesday, February 6, 2013 5:17 PM | Last reply by viiiiiicky - Thursday, February 7, 2013 12:42 PM -
1 Votes
Overloading function call
Are you compiling for UNICODE? That's the default for VS2005. In this case, the first parameter needs to be a wide string, not an ANSI string.Answered | 5 Replies | 2737 Views | Created by max.tor - Friday, March 19, 2010 7:51 PM | Last reply by max.tor - Friday, March 19, 2010 10:30 PM -
0 Votes
Function overloading problem?
introduced by a using-declaration is considered to be from each sub-object of C that is of the type containing the declaration designated by the using-declaration.96) If the ...Answered | 3 Replies | 5660 Views | Created by c_jensen - Saturday, July 23, 2005 8:03 PM | Last reply by Alain Dupont - Monday, August 1, 2005 7:06 PM -
0 Votes
generic parameter overloading
: Interface1 { } public I MyFunc<I>(I param) where I: Interface2 { } As far as I can see this would ...Answered | 3 Replies | 3753 Views | Created by bilsa - Thursday, March 1, 2007 12:48 PM | Last reply by Figo Fei - Friday, March 2, 2007 5:19 AM -
2 Votes
ambiguity in function overloading
rank (4.13) is less than the rank of int can be converted to a prvalue of type int if int can represent all the values of the source type; otherwise, ...Answered | 7 Replies | 2520 Views | Created by Parambath - Sunday, July 21, 2013 6:28 AM | Last reply by Parambath - Tuesday, July 23, 2013 10:12 AM -
2 Votes
Function Overloading in sql
No, there is no way to "overload" a function. However, what you are describing can be done by creating a layer of stored procs and views the .Net code ...Answered | 3 Replies | 1384 Views | Created by Shridhar J Joshi - Friday, January 24, 2014 2:29 PM | Last reply by Tom Phillips - Friday, January 24, 2014 8:53 PM -
0 Votes
Unexpected result of overloading operator +
to have *no* copy constructor. If you had *not* created that copy ctor and just let the compiler provide one by default, then the result of ...Answered | 5 Replies | 2073 Views | Created by zhexin - Sunday, June 3, 2012 5:27 AM | Last reply by WayneAKing - Monday, June 4, 2012 8:45 PM -
0 Votes
function overloading problem
Tons of thankyous to you for helping me...Answered | 4 Replies | 3009 Views | Created by novice372 - Sunday, April 22, 2007 2:47 PM | Last reply by novice372 - Monday, April 23, 2007 3:34 PM -
0 Votes
Overloading a function with parameter float and double
Have you try to call your function in this way? Add(10.0F, 2.0F); SamuAnswered | 2 Replies | 3087 Views | Created by bharan - Monday, June 30, 2008 3:00 PM | Last reply by SAPO19875 - Monday, June 30, 2008 3:23 PM -
0 Votes
Function overloading in com idl
Hi, Is function overloading possible in com interfaces.Answered | 1 Replies | 7313 Views | Created by nimm - Tuesday, July 10, 2007 6:25 AM | Last reply by Bruno van Dooren - Tuesday, July 10, 2007 6:50 AM -
0 Votes
Function Overloading in vb.net 2008
If you type the ''' as described, the comment is created automatically and you only have to complete it. If I use the functionAnswered | 6 Replies | 1882 Views | Created by ArifMustafa - Monday, August 13, 2012 7:19 PM | Last reply by ArifMustafa - Monday, August 13, 2012 8:59 PM -
1 Votes
Type casting VS operator overloading
, your operator+ is competing with the built-in operator+ for the int type. Either one requires one conversion to be usable. One way to solve this is to ...Answered | 2 Replies | 4131 Views | Created by zzfima - Saturday, September 12, 2009 6:30 AM | Last reply by zzfima - Saturday, September 12, 2009 7:17 PM -
0 Votes
Overloading dependant on type
Think of it as creating new methods for the data types such as string, integer, long. So you want a method called foo on the integer data ...Answered | 4 Replies | 2892 Views | Created by KowDot - Tuesday, December 4, 2007 6:39 PM | Last reply by spotty - Wednesday, December 5, 2007 6:27 PM -
0 Votes
overloading
any other type of polymorphism apart from overloading and overidding?Answered | 2 Replies | 3541 Views | Created by NabX - Sunday, February 28, 2010 9:27 AM | Last reply by SamAgain - Sunday, March 7, 2010 2:43 PM - Items 1 to 20 of 2879558 Next ›
No announcements