3
Answers

Regd:- Web Application user activity details !!

Tiger Singh

Tiger Singh

7y
230
1
Dear All,
 
I have one webe application for the user to extarct the data by login/logoff.
 
Now , I need to trace each and every user who when and what they extracted from application.
 
i had captured the details of user on their login/logoff but need to capture what filter they selected and which report they downloaded.
 
Please help here !!
Answers (3)
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 7y
var is a keyword which is anonymous type and was introduced in C# 3.0. var is used to declare implicitly typed local variable means it tells the compiler to figure out the type of the variable at compilation time. A var variable must be initialized at the time of declaration which decide data type.
 
It is mostly helpful when you write LINQ statements and you need customised results, follow below snippets: 
  1. var empQuery =   
  2.     from emp in employees  
  3.     select new { prod.Name, prod.Qual};  
  4.   
  5. foreach (var v in empQuery)  
  6. {  
  7.     Console.WriteLine("Name={0}, Price={1}", v.Name, v.Qual);  
  8. }