コード例 #1
0
 /// <summary>
 /// Find the enum value with the specified name in the specified <see cref="EnumDecl"/>.
 /// </summary>
 /// <returns>An <see cref="EnumMemberRef"/> to the enum value, or an <see cref="UnresolvedRef"/> if no match was found.</returns>
 public static SymbolicRef Find(EnumDecl enumDecl, string name)
 {
     return(Find(enumDecl, name, false));
 }