本文整理匯總了C#中AttributeCollection.First方法的典型用法代碼示例。如果您正苦於以下問題:C# AttributeCollection.First方法的具體用法?C# AttributeCollection.First怎麽用?C# AttributeCollection.First使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類AttributeCollection
的用法示例。
在下文中一共展示了AttributeCollection.First方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: ObjectProperty
/// <summary> 表示一個可以獲取或者設置其內容的對象屬性
/// </summary>
/// <param name="property">屬性信息</param>
public ObjectProperty(PropertyInfo property)
{
Field = false;
MemberInfo = property; //屬性信息
OriginalType = property.PropertyType;
var get = property.GetGetMethod(true); //獲取屬性get方法,不論是否公開
var set = property.GetSetMethod(true); //獲取屬性set方法,不論是否公開
if (set != null) //set方法不為空
{
CanWrite = true; //屬性可寫
Static = set.IsStatic; //屬性是否為靜態屬性
IsPublic = set.IsPublic;
}
if (get != null) //get方法不為空
{
CanRead = true; //屬性可讀
Static = get.IsStatic; //get.set隻要有一個靜態就是靜態
IsPublic = IsPublic || get.IsPublic;
}
ID = System.Threading.Interlocked.Increment(ref Literacy.Sequence);
UID = Guid.NewGuid();
Init();
TypeCodes = TypeInfo.TypeCodes;
Attributes = new AttributeCollection(MemberInfo);
var mapping = Attributes.First<IMemberMappingAttribute>();
if (mapping != null)
{
MappingName = mapping.Name;
}
}