Skip to content

Commit 4fc91a0

Browse files
author
zzzprojects
committed
ZZZ Projects
ZZZ Projects
1 parent b918485 commit 4fc91a0

File tree

1,245 files changed

+18575
-11053
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,245 files changed

+18575
-11053
lines changed

lab/Z.ExtensionMethods.Lab/Form1.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
using System.Windows.Forms;
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
7+
using System.Windows.Forms;
28

39
namespace Z.ExtensionMethods.Lab
410
{
@@ -11,7 +17,7 @@ public Form1()
1117
object a = null;
1218
string b = "";
1319

14-
20+
1521
//b.Repeat(4);
1622
//a.To<int>();
1723

lab/Z.ExtensionMethods.Lab/Program.cs

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
7+
using System;
48
using System.Windows.Forms;
59

610
namespace Z.ExtensionMethods.Lab
711
{
8-
static class Program
12+
internal static class Program
913
{
1014
/// <summary>
11-
/// The main entry point for the application.
15+
/// The main entry point for the application.
1216
/// </summary>
1317
[STAThread]
14-
static void Main()
18+
private static void Main()
1519
{
1620
Application.EnableVisualStyles();
1721
Application.SetCompatibleTextRenderingDefault(false);
1822
Application.Run(new Form1());
1923
}
2024
}
21-
}
25+
}

lab/Z.ExtensionMethods.Lab/Properties/AssemblyInfo.cs

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
using System.Reflection;
2-
using System.Runtime.CompilerServices;
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
7+
using System.Reflection;
38
using System.Runtime.InteropServices;
49

510
// General Information about an assembly is controlled through the following
611
// set of attributes. Change these attribute values to modify the information
712
// associated with an assembly.
13+
814
[assembly: AssemblyTitle("Z.ExtensionMethods.Lab")]
915
[assembly: AssemblyDescription("")]
1016
[assembly: AssemblyConfiguration("")]
@@ -17,9 +23,11 @@
1723
// Setting ComVisible to false makes the types in this assembly not visible
1824
// to COM components. If you need to access a type in this assembly from
1925
// COM, set the ComVisible attribute to true on that type.
26+
2027
[assembly: ComVisible(false)]
2128

2229
// The following GUID is for the ID of the typelib if this project is exposed to COM
30+
2331
[assembly: Guid("e714bb6c-25d8-402f-97f1-a78940e960bb")]
2432

2533
// Version information for an assembly consists of the following four values:
@@ -32,5 +40,6 @@
3240
// You can specify all the values or you can default the Build and Revision Numbers
3341
// by using the '*' as shown below:
3442
// [assembly: AssemblyVersion("1.0.*")]
43+
3544
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
45+
[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?xml version='1.0' encoding='utf-8'?>
2+
23
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
34
<Profiles>
45
<Profile Name="(Default)" />
56
</Profiles>
67
<Settings />
7-
</SettingsFile>
8+
</SettingsFile>

src/Z.Caching/Properties/AssemblyInfo.cs

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
using System.Reflection;
2-
using System.Runtime.CompilerServices;
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
7+
using System.Reflection;
38
using System.Runtime.InteropServices;
49

510
// General Information about an assembly is controlled through the following
611
// set of attributes. Change these attribute values to modify the information
712
// associated with an assembly.
13+
814
[assembly: AssemblyTitle("Z.Caching")]
915
[assembly: AssemblyDescription("")]
1016
[assembly: AssemblyConfiguration("")]
@@ -17,9 +23,11 @@
1723
// Setting ComVisible to false makes the types in this assembly not visible
1824
// to COM components. If you need to access a type in this assembly from
1925
// COM, set the ComVisible attribute to true on that type.
26+
2027
[assembly: ComVisible(false)]
2128

2229
// The following GUID is for the ID of the typelib if this project is exposed to COM
30+
2331
[assembly: Guid("131d6f09-ff3e-4eb9-baf6-210442f8e189")]
2432

2533
// Version information for an assembly consists of the following four values:
@@ -32,5 +40,6 @@
3240
// You can specify all the values or you can default the Build and Revision Numbers
3341
// by using the '*' as shown below:
3442
// [assembly: AssemblyVersion("1.0.*")]
43+
3544
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
45+
[assembly: AssemblyFileVersion("1.0.0.0")]

src/Z.Caching/System.Object/Object.FromCache.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
using System;
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
7+
using System;
28
using System.Linq.Expressions;
39
using System.Runtime.Caching;
410

src/Z.Caching/System.Runtime.Caching.MemoryCache/MemoryCache.AddOrGetExisting.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
using System;
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
7+
using System;
28
using System.Runtime.Caching;
39

410
public static partial class Extensions

src/Z.Collections/Properties/AssemblyInfo.cs

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
using System.Reflection;
2-
using System.Runtime.CompilerServices;
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
7+
using System.Reflection;
38
using System.Runtime.InteropServices;
49

510
// General Information about an assembly is controlled through the following
611
// set of attributes. Change these attribute values to modify the information
712
// associated with an assembly.
13+
814
[assembly: AssemblyTitle("Z.Collections")]
915
[assembly: AssemblyDescription("")]
1016
[assembly: AssemblyConfiguration("")]
@@ -17,9 +23,11 @@
1723
// Setting ComVisible to false makes the types in this assembly not visible
1824
// to COM components. If you need to access a type in this assembly from
1925
// COM, set the ComVisible attribute to true on that type.
26+
2027
[assembly: ComVisible(false)]
2128

2229
// The following GUID is for the ID of the typelib if this project is exposed to COM
30+
2331
[assembly: Guid("a7f71a61-703f-45b9-b383-eb2290a2b4cd")]
2432

2533
// Version information for an assembly consists of the following four values:
@@ -32,5 +40,6 @@
3240
// You can specify all the values or you can default the Build and Revision Numbers
3341
// by using the '*' as shown below:
3442
// [assembly: AssemblyVersion("1.0.*")]
43+
3544
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
45+
[assembly: AssemblyFileVersion("1.0.0.0")]

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].AddIf.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System;
28
using System.Collections.Generic;
39

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].AddIfNotContains.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].AddRange.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].AddRangeIf.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System;
28
using System.Collections.Generic;
39

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].AddRangeIfNotContains.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].ContainsAll.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].ContainsAny.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].IsEmpty.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].IsNotEmpty.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].IsNotNullOrEmpty.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].IsNullOrEmpty.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].RemoveIf.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System;
28
using System.Collections.Generic;
39

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].RemoveIfContains.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].RemoveRange.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].RemoveRangeIf.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System;
28
using System.Collections.Generic;
39

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].RemoveRangeIfContains.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System.Collections.Generic;
28

39
public static partial class Extensions

src/Z.Collections/System.Collections.Generic.ICollection[T]/ICollection[T].RemoveWhere.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System;
28
using System.Collections.Generic;
39
using System.Linq;

src/Z.Collections/System.Collections.Generic.IDictionary[TKey, TValue]/IDictionary[Tkey, TValue].AddIfNotContainsKey.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System;
28
using System.Collections.Generic;
39

src/Z.Collections/System.Collections.Generic.IDictionary[TKey, TValue]/IDictionary[Tkey, TValue].AddOrUpdate.cs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) 2015 ZZZ Projects. All rights reserved
2+
// Licensed under MIT License (MIT) (https://github.com/zzzprojects/Z.ExtensionMethods)
3+
// Website: http://www.zzzprojects.com/
4+
// Feedback / Feature Requests / Issues : http://zzzprojects.uservoice.com/forums/283927
5+
// All ZZZ Projects products: Entity Framework Extensions / Bulk Operations / Extension Methods /Icon Library
6+
17
using System;
28
using System.Collections.Generic;
39

0 commit comments

Comments
 (0)