Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

41
votes
5answers
7k views

Why no ICloneable<T>?

Is there a particular reason why a generic ICloneable<T> does not exist? It would be much more comfortable, if I would not need to cast it everytime I clone something.
5
votes
6answers
107 views

Will disposable object clone cause memory leak in C#?

Check this code: .. class someclass : IDisposable{ private Bitmap imageObject; public void ImageCrop(int X, int Y, int W, int H) { imageObject = imageObject.Clone(new Rectangle(X, ...
3
votes
4answers
278 views

ICloneable question

If a class implemented ICloneable, what does that mean?
2
votes
5answers
280 views

cloning an object in C#

I want to clone an object with using the ICloneable interface and for some reason I can't clone in my program. Here is my code: public class GeoInfo : ICloneable { private long InfoID; ...
2
votes
7answers
461 views

What's the opposite of 'clone'?

I have a class that implements ICloneable. I need it to have a backup of an entity, so when the user clicks cancel, etc., I have all values asides. I want to create in the cloneable class another ...
1
vote
4answers
229 views

How to use ICloneable<T> when T is List<T>?

I have the following: public class InstanceList : List<Instance> {} I would like to make this cloneable. Following the example here: Why no ICloneable<T>? I tried the following: ...
1
vote
1answer
103 views

C# Cloning including Lambda Expression

I've got a Lambda Expression which is a function that does some operation in a previous context. Consequently, I will need to clone this object and carry over the expression to the new context, but I ...
1
vote
1answer
133 views

How Cloneable to all field [closed]

Possible Duplicate: Deep copy of List<T> public class MyClass : ICloneable { private List<string> m_list = new List<string>(); public MyClass() { ...
1
vote
3answers
233 views

ICloneable Vs Strongly Typed Function Vs Being Lazy

Hi Folks I need to deep clone some custom objects that references other custom objects and these may reference other cust... and so on you get the idea. I'm just at the documentation & conception ...
1
vote
3answers
1k views

Implementing the ICloneable Interface C#(Question on Deep Cloning)

I was looking at code that implemented the ICloneable interface for one of the classes. The class was as follows: public class TempClass { String[] names; String[] values; } A partial class ...
1
vote
2answers
696 views

C# stack overflow

I am trying to find out why I am getting a stack overflow exception. I am creating a simple card game for a school assignment and when I clone the cards to return them I get the stack overflow ...
1
vote
2answers
243 views

A doubt with the ICloneable interface in petshop 4.0?

In the 'DBUtility' project of Petshop 4.0,the abstract class SqlHelper has a method 'GetCachedParameters': public static SqlParameter[] GetCachedParameters(string cacheKey) { ...
1
vote
3answers
835 views

Creating objects driven by the database to populate a Treeview - very slow

I have an application that reads a table from a database. I issue an SQL query to get a result set, based on a unique string value I glean from the results, I use a case/switch statement to generate ...