コード例 #1
0
ファイル: PropertyBase.cs プロジェクト: dotnet/ef6tools
        internal bool InsertBefore; // Flag whether to insert before or insert after InsertAt.

        internal InsertPropertyPosition(PropertyBase insertAtProperty, bool insertBefore)
        {
            Debug.Assert(insertAtProperty != null, "Parameter insertAt cannot be null.");
            InsertBefore     = insertBefore;
            InsertAtProperty = insertAtProperty;
        }