HandCoded.Finance.Calendar.ForName C# (CSharp) Méthode

ForName() public static méthode

If a Calendar with the given name exists in the extent set then a reference to it is returned to the caller.
public static ForName ( string name ) : Calendar
name string The required Calendar name.
Résultat Calendar
        public static Calendar ForName(string name)
        {
            return (extent.ContainsKey (name) ? extent [name] : null);
        }