Merge pull request #656 from LogosBible/collection_lock
[mono.git] / mcs / class / System.Core / System.Linq.Expressions / MemberBindingType.cs
index dc6c892ebabf2667122026a1d29a9528e83390f2..934b5b6fdfad3213af34f4d4a533094dca21be49 100644 (file)
@@ -1,4 +1,12 @@
-// Permission is hereby granted, free of charge, to any person obtaining
+//
+// MemberBindingType.cs
+//
+// Author:
+//   Jb Evain (jbevain@novell.com)
+//
+// (C) 2008 Novell, Inc. (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // "Software"), to deal in the Software without restriction, including
 // without limitation the rights to use, copy, modify, merge, publish,
 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-// Authors:
-//             Antonello Provenzano  <antonello@deveel.com>
-//
 
-namespace System.Linq.Expressions
-{
-       public enum MemberBindingType
-       {
+namespace System.Linq.Expressions {
+
+       public enum MemberBindingType {
                Assignment,
                MemberBinding,
                ListBinding
        }
-}
\ No newline at end of file
+}