When declaring a function in cpp, what is the meaning of the sign ^ and * before and after a variabl
        Posted  
        
            by Shlomi Assaf
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Shlomi Assaf
        
        
        
        Published on 2010-04-25T01:54:29Z
        Indexed on 
            2010/04/25
            2:03 UTC
        
        
        Read the original article
        Hit count: 451
        
For eaxample:
lets say we have a class calss MyClass
String^ MyClass::GetSomeInfoForExamplePuprs( int InfoNumber )
{
}
Or
static String ^GetOtherInfoExample()
{
}
OR
String ^GetOtherInfoExample(object *Something)
{
}
I saw it in a source code, cant figure it out.
Thank you Shlomi
© Stack Overflow or respective owner