Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using RedditSharp;
- using System.Linq;
- namespace credditz
- {
- class Program
- {
- static void Main(string[] args)
- {
- var importReddit = new Reddit();
- importReddit.LogIn("Lord_Zero", "my password");
- var importAccount = importReddit.User;
- foreach (string subreddit in importAccount.SubscribedSubreddits.Select(s => s.Name))
- {
- Console.WriteLine(subreddit);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement