c# - Read in all Groupchats from Skype -


i wondering if knows how can read in groupchats of currentuser using skype4com. codes reading in friends:

foreach (skype4comlib.user myfriends in skype.friends) {     listbox3.items.add(myfriends.handle); } 

and tried groups:

foreach (skype4comlib.group chat in skype.groups) {     listbox3.items.add(chat.tostring()); } 

but printed out:

system.__com

any ideas?


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -