OpenRA.MapPreview.LoadRuleSection C# (CSharp) 메소드

LoadRuleSection() 개인적인 메소드

private LoadRuleSection ( MiniYaml>.Dictionary yaml, string section ) : MiniYaml
yaml MiniYaml>.Dictionary
section string
리턴 MiniYaml
        MiniYaml LoadRuleSection(Dictionary<string, MiniYaml> yaml, string section)
        {
            MiniYaml node;
            if (!yaml.TryGetValue(section, out node))
                return null;

            return node;
        }