Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save forenheith/feff056bfda94c2f4fa5fd768bb6335c to your computer and use it in GitHub Desktop.
Save forenheith/feff056bfda94c2f4fa5fd768bb6335c to your computer and use it in GitHub Desktop.
public static AtcPermission GetATCPermission(this XElement element, XName name)
{
var childElement = element.Attribute(name);
if (childElement == null) return AtcPermission.Board;
switch (childElement.Value)
{
case "N": return AtcPermission.NoBoard;
default: return AtcPermission.Board;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment