コード例 #1
0
        /// <summary>
        /// Gets the meta information of the commandment.
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="commandment">The commandment.</param>
        /// <param name="metaType">Type of the meta.</param>
        /// <returns></returns>
        public static T Meta <T>(this CommandmentBase commandment, CommandmentMetaType metaType)
        {
            CommandmentMeta meta;

            commandmentTypeMeta.TryGetValue(commandment.GetType(), out meta);
            return(meta != null ? (T)meta.Value : default(T));
        }
コード例 #2
0
 /// <summary>
 /// Sets meta information on the commandment.
 /// </summary>
 /// <typeparam name="T"></typeparam>
 /// <param name="commandment">The commandment.</param>
 /// <param name="type">The type.</param>
 /// <param name="value">The value.</param>
 public static void Meta <T>(this CommandmentBase commandment, CommandmentMetaType type, T value)
 {
     commandmentTypeMeta[commandment.GetType()] = new CommandmentMeta {
         Type = type, Value = value
     };
 }