1 write to _tryParseDelegates
Microsoft.ML.Data (1)
Data\Conversion.cs (1)
112
_tryParseDelegates
= new Dictionary<Type, Delegate>();
3 references to _tryParseDelegates
Microsoft.ML.Data (3)
Data\Conversion.cs (3)
360
_tryParseDelegates
.Add(typeof(T), fn);
548
Contracts.Assert(
_tryParseDelegates
.ContainsKey(typeDst.RawType));
549
return (TryParseMapper<TDst>)
_tryParseDelegates
[typeDst.RawType];