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 967459
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:19:13+00:00 2026-05-16T02:19:13+00:00

D is a dictionary whose entry values are of Type T What I’m attempting

  • 0

D is a dictionary whose entry values are of Type T

What I’m attempting to do is have a delegate like “Serializer” below that I can invoke on an instance of T, such as “Entry.Value” below.

Please see the “return Entry…” line below for my wishful thinking.

Is this possible?

If so, is it a bad idea?

Public Delegate Function Serializer(Of T)() As Byte()

Function SerializeDictionary_String_Object(Of T)(ByRef D As Dictionary(Of String, T), ByVal ObjSerializer As Serializer(Of T)) As Byte()

  for each Entry in D
    return Entry.Value.ObjSerializer()
    exit for
  next

End Function
  • 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-16T02:19:14+00:00Added an answer on May 16, 2026 at 2:19 am

    In your Serializer delegate, you’re not using T anywhere. You should do something like this:

    Public Delegate Function Serializer(Of T)(Byval obj As T) As Byte()
    

    Or better yet, just use the built in Func delegate.

    Function SerializeDictionary_String_Object(Of T)(ByRef D As Dictionary(Of String, T), ByVal ObjSerializer As Func(Of T, Byte()) As Byte()
    

    Then call it by doing:

    ObjSerializer(Entry.Value)
    

    I’m extremely rusty at VB so my apologies if I missed an underscore or something. 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a dictionary whose values I'd like to return to a caller like
I have a dictionary whose keys are strings and values are numpy arrays, e.g.:
suppose I have a dictionary whose keys are strings. How can I efficiently make
I have a large dictionary constructed like so: programs['New York'] = 'some values...' programs['Port
Dictionary cannot have two values with same key. please tell which logic/algorithm being used
Have Dictionary <Int64, byte> that gets used a lot. I mean in a loop
What is the datatype you use to fetch items whose type is dictionary in
I have a dictionary whose components are all 2-tuples (all integers) and I want
I have a dictionary whose keys are NSStrings and whose objects are NSArray. Here's
I have a class whose instances have attributes that are containers which themselves contain

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.