Existe-t-il un moyen de savoir si la fonction d'appel a des attributs définis dessus?Puis-je savoir si un attribut particulier était présent sur la fonction d'appel?
[RunOnPlatformB]
int blah()
{
return boo();
}
int boo()
{
// can i find out if RunOnPlatformB was set on my caller?
}