Click here to Skip to main content
15,922,523 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
C#
get_threshold();
&


ABC_GetAllAxis();
Posted

1 solution

get_threshold and ABC_GetAllAxis are indentifiers

() is the function call operator

; is the statement terminator


so:

get_threshold();


Is a call to the function named "get_threshold" and

ABC_GetAllAxis();


Is a call to the function named "ABC_GetAllAxis"


What they actually do can not be determined without examining the source code that defines those functions.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 22-May-12 19:46pm    
Adequate response; my 5.
--SA
Sandeep Mewara 23-May-12 13:32pm    
5!

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