Org.BouncyCastle.X509.Store.X509CertStoreSelector.CopyBoolArray C# (CSharp) Method

CopyBoolArray() private static method

private static CopyBoolArray ( bool b ) : bool[]
b bool
return bool[]
		private static bool[] CopyBoolArray(
			bool[] b)
		{
			return b == null ? null : (bool[]) b.Clone();
		}