Click here to Skip to main content
15,903,388 members

Comments by Member 9893793 (Top 6 by date)

Member 9893793 24-Feb-15 5:02am View    
I can count it. but I want to know, that google provide such thing?
Member 9893793 24-Feb-15 4:56am View    
I want to check how many times google Map Api hits from my application in 5 hours. Is google provide any thing who calculate it.
Member 9893793 24-Feb-15 4:32am View    
Is there any google api for this purpose?
Member 9893793 17-Feb-15 6:47am View    
yes. but I didn't found any thing recording this. I want to Know, that Does Facebook have a paid Graph API which exposes more functionality/tweets/posts? I wonder if there is paid unlimited Graph API access
Member 9893793 2-Feb-15 4:34am View    
I include newtonsoft in my application. but it's not helpful for me.
I also try this. In test there is my string.
here is my other classes.
public class Topic
{
public int account_id { get; set; }
public ICollection<Post> posts { get; set; }
}
public class Post
{
public int account_id { get; set; }
public bool answer { get; set; }
public string body { get; set; }
public string body_html { get; set; }
}
Topic ABC = JsonConvert.DeserializeObject<topic>(test);
when i debug it and check the value of ABC. there is null value shows.