當前位置: 首頁>>代碼示例>>C#>>正文


C# AttributeCollection.First方法代碼示例

本文整理匯總了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;
     }
 }
開發者ID:Skycweb,項目名稱:blqw-Faller,代碼行數:33,代碼來源:ObjectProperty.cs


注:本文中的AttributeCollection.First方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。