コード例 #1
0
 /// <summary> Gets the element object associated with the provided type and subtype </summary>
 /// <param name="Type"> Type for the element to retrieve </param>
 /// <param name="SubType"> Subtype for the element to retrieve </param>
 /// <returns>Correct element object which implements the <see cref="abstract_Element"/> class. </returns>
 public static abstract_Element getElement(string Type, string SubType)
 {
     return(getElement(Element_Type_Convertor.ToType(Type), SubType));
 }
コード例 #2
0
 /// <summary> Gets the element object associated with the provided type </summary>
 /// <param name="Type"> Type for the element to retrieve </param>
 /// <returns>Correct element object which implements the <see cref="abstract_Element"/> class. </returns>
 public static abstract_Element getElement(string Type)
 {
     return(getElement(Element_Type_Convertor.ToType(Type), String.Empty));
 }