I do not know PHP, could anyone explain me how $data.$prop looks on C#? If $data has "some_data" value and $prop has "some_other_data" value, the $data.$prop is "some_data.some_other_data", Right?
I would like to implement next line on C#: sha1(md5($data.$prop)). There is concatenation of strings inside of brackets?