Bamboo.Prevalence.VersionMigration.TypeMappingCollection.Exists C# (CSharp) Метод

Exists() публичный Метод

public Exists ( string typeName ) : bool
typeName string
Результат bool
		public bool Exists(string typeName)
		{
			return _items.ContainsKey(typeName);
		}

Usage Example

Пример #1
0
 public bool IsTypeMappingAvailable(Type type)
 {
     return(_typeMappings.Exists(type.FullName));
 }