System.Security.Permissions.StrongName2.Copy C# (CSharp) Method

Copy() public method

public Copy ( ) : StrongName2
return StrongName2
        public StrongName2 Copy()
        {
            return new StrongName2(m_publicKeyBlob, m_name, m_version);
        }

Usage Example

 public StrongName2 Intersect(StrongName2 target)
 {
     if (target.IsSubsetOf( this ))
         return target.Copy();
     else if (this.IsSubsetOf( target ))
         return this.Copy();
     else
         return null;
 }
All Usage Examples Of System.Security.Permissions.StrongName2::Copy