When declaring a function in cpp, what is the meaning of the sign ^ and * before and after a variabl
- by Shlomi Assaf
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