Fan.Sys.Pod.type C# (CSharp) Méthode

type() public méthode

public type ( string name ) : Type
name string
Résultat Type
        public Type type(string name)
        {
            return type(name, true);
        }

Same methods

Pod::type ( string name, bool check ) : Type

Usage Example

Exemple #1
0
        //////////////////////////////////////////////////////////////////////////
        // Init Types
        //////////////////////////////////////////////////////////////////////////

        static Type initType(string name)
        {
            try
            {
                return(m_sysPod.type(name, true));
            }
            catch (Exception e)
            {
                throw initFail("type " + name, e);
            }
        }
All Usage Examples Of Fan.Sys.Pod::type