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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:06:42+00:00 2026-05-14T01:06:42+00:00

I want to create a generic method to serizlize a class to text (for

  • 0

I want to create a generic method to serizlize a class to text (for use as part of a networking component)
The method should be something like:

public string SerializeToText<T>(T DataToSerialize);

The method contents would simply perform the xml serialization and I can do this. What I want to know is if I can check whether T can be serialized: preferably at compile time, but failing that, at run time.

  • 1 1 Answer
  • 1 View
  • 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-14T01:06:42+00:00Added an answer on May 14, 2026 at 1:06 am

    The single most reliable way to test and see if an object was serializable is to serialize it. If it succeeds then the object was serializable, if it throws then it was not serializable.

    Note this is not a predictor of future success but only of past success. It’s certainly possible for an object to change it’s state in a way to make it no longer serializable. For example

    [Serialiable] 
    class Foo { 
      public object Field;
    }
    class Bar { }
    
    var value = new Foo() { Field1 = 42; } // value is serializable
    value.Field1 = new Bar();  // value is no longer serializable
    

    I wrote a lengthy blog article on the issues around determining if an object is or is no serializable. It goes over the issues with this type of an approach in depth.

    • http://blogs.msdn.com/jaredpar/archive/2009/03/31/is-it-serializable.aspx
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi i want to create a generic style for pin button. <Window x:Class=TooglePinButtonStyle.MainWindow xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation
I want create a generic (general) method which accepts the return types of LINQ
I want to create a specific generic method in Scala. It takes two parameters.
is it possible to create a generic method in interfaces? say I want to
I have a generic method: (simplified) public class DataAccess : IDataAccess { public List<T>
Imagine C# code like this ISomeInterface someVar = creator.Create(typeof(SomeClass), typeof(ISomeInterface)); What should happen? Method
I have an interesting problem. I'd like to create a generic class that can
I want to create a generic method that is only applicable to classes that
In C# I want to create a generic method that: Accepts a MethodInfo object
I want to create a very generic utility method to take any Collection 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.