annotate Source/TypeBuilder/GetValueAttribute.cs @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
1 using System;
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
2
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
3 namespace BLToolkit.TypeBuilder
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
4 {
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
5 ///<summary>
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
6 /// Indicates that a field, property or method can be treated as a value getter.
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
7 ///</summary>
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
8 [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method)]
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
9 public sealed class GetValueAttribute : Attribute
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
10 {
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
11 }
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
12 }