Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 812367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T01:11:34+00:00 2026-05-15T01:11:34+00:00

add-type -Language CSharpVersion3 -TypeDefinition @ public class pack_code { public pack_code() {} public string

  • 0
add-type -Language CSharpVersion3 -TypeDefinition @"
    public class pack_code
    {
        public pack_code() {}

        public string code { get; set; }
        public string type { get; set; }
    }
"@

$a = New-Object pack_code
$a.code = "3"
$a.type = "5"
$b = New-Object pack_code
$b.code = "2"
$b.type = "5"
$c = New-Object pack_code
$c.code = "2"
$c.type = "5"
$d = New-Object pack_code
$d.code = "1"
$d.type = "1"

$codes = New-Object 'System.Collections.Generic.List[object]'
$codes.add($a)
$codes.add($b)
$codes.add($c)
$codes.add($d)

Is there a way to select distinct from $codes and select the objects where type equals 1? How can I use LINQ with PowerShell?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T01:11:35+00:00Added an answer on May 15, 2026 at 1:11 am

    What Keith said. Plus, changed the constructor in your C# and used the -Unique parameter on the Sort cmdlet.

    Add-Type -Language CSharpVersion3 -TypeDefinition @"
        public class pack_code
        {
            public pack_code(string code, string type) {
                this.code=code;
                this.type=type;
            }
    
            public string code { get; set; }
            public string type { get; set; }
        }
    "@
    
    $codes = New-Object 'System.Collections.Generic.List[object]'
    $codes.Add( ( New-Object pack_code 3, 5 ))
    $codes.Add( ( New-Object pack_code 2, 5 ))
    $codes.Add( ( New-Object pack_code 2, 5 ))
    $codes.Add( ( New-Object pack_code 1, 1 ))
    $codes.Add( ( New-Object pack_code 2, 2 ))
    $codes.Add( ( New-Object pack_code 2, 1 ))
    $codes.Add( ( New-Object pack_code 2, 1 ))
    
    $codes | sort code, type -Unique | where {$_.type -eq 1}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following Powershell code: Add-Type -Assembly System.Configuration [ExeConfigurationFileMap] $configMap = New-Object ExeConfigurationFileMap
Code: add-type @ public interface IFoo { void Foo(); } public class Bar :
Does anyone know of an irrational number representation type/object/class/whatever in any programming language? All
I am new to COM and need to add a Server COM object to
If I design a new language with type inference, no explicit types and no
I wish to add some type of business logic constraint to a table, but
The opposite of this question: How do I add a type to GWT's Serialization
Users need to be able to add a specific type of column to an
How I can keep all the current formatting for a file type but add
I have a Dictionary<Guid, ElementViewModel> . (ElementViewModel is our own complex type.) I add

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.