You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- IUser user;
-
- // Here we use inline unboxing to make a call to its member (if available) only once.
-
- // Note that if the entity we're trying to cast to is null, this will throw a NullReferenceException.
- Console.WriteLine(((IGuildUser)user).Nickname);
-
- // In case you are certain the entity IS said member, you can also use unboxing to declare variables.
- IGuildUser guildUser = (IGuildUser)user;
|