ATMLModelLibrary.model.Physical.HasUnit C# (CSharp) Méthode

HasUnit() public static méthode

public static HasUnit ( string word ) : bool
word string
Résultat bool
        public static bool HasUnit(string word)
        {
            int i;
            return !Int32.TryParse(word.Substring(word.Length - 1, 1), out i);
        }