i need your help.
i have the following data structure in php:
$conditions = array(
"START" => array(
"AND" => array(
array("==" => array( 'SessionId' => session_id())),
array("<=" => array( 'LastAction'=> time()-SESSION_LIFETIME))
)
)
);
i need this code in c# now. i have tried a mix of list and dictionaries... now im totally confused and lost in this mix...
any ideas?
thanks :)
Paul