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

  • Home
  • SEARCH
  • 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 7625847
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:14:45+00:00 2026-05-31T05:14:45+00:00

I am looking for a way to convert my List(Of string) into an Object

  • 0

I am looking for a way to convert my List(Of string) into an Object in vb. So in the end it would be the same as declaring Dim cArray() As Object = new Object. Can anyone point me to how i can achieve this? I cannot use the LINQ .ToArray as that creates a string array and this is not acceptable for my work. I need to pass this object into another one that has the parameter (aArray as Object).

Thanks

  • 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-31T05:14:45+00:00Added an answer on May 31, 2026 at 5:14 am

    You can simply call this :

    SomeStringList.Select(Function(f) CType(f, Object)).ToList
    

    Or you can make a nice approach by making an extension function that you can on any kind of Lists:

    Module Module1
    
        <System.Runtime.CompilerServices.Extension()> _
        Public Function ToObject(Of T)(ByVal aList As List(Of T)) As List(Of Object)
            Dim res As List(Of Object)
            Try
                If aList IsNot Nothing Then
                    res = aList.Select(Function(f) CType(f, Object)).ToList
                End If
            Catch ex As Exception
                MsgBox(ex.Message)
            End Try
            Return res
        End Function
    
    End Module
    

    Now you can see it within any list :

    Dim iL As New List(Of Integer)
    Dim ObjiL = iL.ToObject
    
    Dim sL As New List(Of String)
    Dim ObjsL = sL.ToObject
    ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for av way to convert a string into whitespace; spaces, newlines and
I'm looking for a way to convert a preprocessor token to a string. Specifically,
I am looking for an efficient way to convert a large int[] into a
I need an easy way to convert a List<int> to a string array. I
I'm looking for a way to convert a list of tuples like this: [(1,4),(2,4),(3,4),(4,15),(5,15),(6,23),(7,23),(8,23),(9,15),(10,23),(11,15),(12,15)]
I initially was looking for a way convert byte to float, and found answers
As the title says i am looking for a way convert a huge number
I've been looking for a way to convert an mp3 to aac programmatically or
Hej everyone, problem : I am looking for right way to convert an index
looking for the standard bug-proofed way to convert long names such as C:\Documents and

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.