C# Casting and Generics - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T10:01:54Z http://stackoverflow.com/feeds/question/992497 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/992497/c-casting-and-generics 2 C# Casting and Generics HaggleLad 2009-06-14T09:16:53Z 2009-06-22T14:04:45Z <p>Hello all, I've been struggling with a piece of C# code and although I have found a solution to the problem, it is by no means ideal (see DoSomething_WorksButNotIdeal() below). </p> <p>What I would like to do is instead of having the if, else statement (which is potentially massive depending on what types I want to support) just have a generic cast, but I can't get it to work. I've tried to demonstrate this in the DoSomething_HelpMe() method.</p> <p>Is there anyway of achieving this? Any help is greatly appreciated.</p> <pre><code>public interface ITag { string TagName { get; } Type Type { get; } } public interface ITag&lt;T&gt; : ITag { T InMemValue { get; set; } T OnDiscValue { get; set; } } public class Tag&lt;T&gt; : ITag&lt;T&gt; { public Tag(string tagName) { TagName = tagName; } public string TagName { get; private set; } public T InMemValue { get; set; } public T OnDiscValue { get; set; } public Type Type{ get{ return typeof(T);} } } public class MusicTrack { public MusicTrack() { TrackTitle = new Tag&lt;string&gt;("TrackTitle"); TrackNumber = new Tag&lt;int&gt;("TrackNumber"); Tags = new Dictionary&lt;string, ITag&gt;(); Tags.Add(TrackTitle.TagName, TrackTitle); Tags.Add(TrackNumber.TagName, TrackNumber); } public IDictionary&lt;string,ITag&gt; Tags; public ITag&lt;string&gt; TrackTitle { get; set; } public ITag&lt;int&gt; TrackNumber { get; set; } } public static class Main { public static void DoSomething_WorksButNotIdeal() { MusicTrack track1 = new MusicTrack(); MusicTrack track2 = new MusicTrack(); // Set some values on the tracks foreach (ITag tag in track1.Tags.Values) { Type type = tag.Type; if (type == typeof(string)) { ((ITag&lt;string&gt;) tag).InMemValue = ((ITag&lt;string&gt;)track2.Tags[tag.TagName]).OnDiscValue; } else if (type == typeof(int)) { ((ITag&lt;int&gt;)tag).InMemValue = ((ITag&lt;int&gt;)track2.Tags[tag.TagName]).OnDiscValue; } else if (type == typeof(bool)) { ((ITag&lt;bool&gt;)tag).InMemValue = ((ITag&lt;bool&gt;)track2.Tags[tag.TagName]).OnDiscValue; } // etc etc else { throw new Exception("Unsupported type."); } } } public static void DoSomething_HelpMe() { MusicTrack track1 = new MusicTrack(); MusicTrack track2 = new MusicTrack(); // Set some values on the tracks foreach (ITag tag in track1.Tags.Values) { Type type = tag.Type; // THIS OBVIOUSLY DOESN'T WORK BUT I'M JUST TRYING TO DEMONSTRATE WHAT // I'D IDEALLY LIKE TO ACHIEVE ((ITag&lt;typeof(type)&gt;)tag).InMemValue = ((ITag&lt;typeof(type)&gt;)track2.Tags[tag.TagName]).OnDiscValue; } } } </code></pre> http://stackoverflow.com/questions/992497/c-casting-and-generics/992512#992512 4 Answer by Marc Gravell for C# Casting and Generics Marc Gravell 2009-06-14T09:27:55Z 2009-06-14T09:54:00Z <p>Any reason that you can't have:</p> <pre><code>public interface ITag { string TagName { get; } Type Type { get; } object InMemValue { get; set; } object OnDiscValue { get; set; } } </code></pre> <p>and use <code>ITag&lt;T&gt;</code> to make it more specific?</p> <pre><code>public interface ITag&lt;T&gt; : ITag { new T InMemValue { get; set; } new T OnDiscValue { get; set; } } </code></pre> <p>Then your method can just use <code>ITag</code>. You'd need something like (int <code>Tag&lt;T&gt;</code>):</p> <pre><code>object ITag.InMemValue { get { return InMemValue; } set { InMemValue = (T)value; } } object ITag.OnDiscValue { get { return OnDiscValue; } set { OnDiscValue = (T)value; } } </code></pre> <p><hr /></p> <p>(edit)</p> <p>Another option would be a method on the non-generic <code>ITag</code>:</p> <pre><code>void CopyValueFrom(ITag tag); </code></pre> <p>(maybe a bit more specific about what it copies to/from)</p> <p>Your concrete implementation (<code>Tag&lt;T&gt;</code>) would have to assume that the <code>ITag</code> is actually an <code>ITag&lt;T&gt;</code> and cast:</p> <pre><code>public void CopyFromTag(ITag tag) { ITag&lt;T&gt; from = tag as ITag&lt;T&gt;; if(from==null) throw new ArgumentException("tag"); this.TheFirstProperty = from.TheSecondProperty; } </code></pre> http://stackoverflow.com/questions/992497/c-casting-and-generics/992851#992851 3 Answer by jerryjvl for C# Casting and Generics jerryjvl 2009-06-14T13:33:40Z 2009-06-14T13:33:40Z <p>The simplest way to solve it is to resolve the type where you have the information, namely inside the <code>Tag&lt;T&gt;</code> implementation, so add the following to your existing types (only showing the additions!)</p> <pre><code>public interface ITag { void CopyFrom(bool sourceIsMem, ITag sourceTag, bool targetIsMem); } public class Tag&lt;T&gt; : ITag&lt;T&gt; { public void CopyFrom(bool sourceIsMem, ITag sourceTag, bool targetIsMem) { ITag&lt;T&gt; castSource = sourceTag as ITag&lt;T&gt;; if (castSource == null) throw new ArgumentException( "Source tag is of an incompatible type", "sourceTag"); if (targetIsMem) InMemValue = sourceIsMem ? castSource.InMemValue : castSource.OnDiscValue; else OnDiscValue = sourceIsMem ? castSource.InMemValue : castSource.OnDiscValue; } } </code></pre> <p>Note that you really should use <code>enum</code> types for the <code>sourceIsMem</code> and <code>targetIsMem</code> instead, because a <code>bool</code> is really ugly and hard to read in the invocation as the following fragment will show.</p> <p>This is how you would make your routine work now:</p> <pre><code>public static void DoSomething_HelpMe() { MusicTrack track1 = new MusicTrack(); MusicTrack track2 = new MusicTrack(); // Set some values on the tracks foreach (ITag tag in track1.Tags.Values) tag.CopyFrom(false, track2.Tags[tag.TagName], true); } </code></pre> http://stackoverflow.com/questions/992497/c-casting-and-generics/1027396#1027396 0 Answer by kvb for C# Casting and Generics kvb 2009-06-22T14:04:45Z 2009-06-22T14:04:45Z <p>Here's one approach, which requires a decent amount of boilerplate but will allow you to do what you want using your existing definitions of <code>ITag</code>, <code>ITag&lt;T&gt;</code>, and <code>Tag&lt;T&gt;</code>. The <code>TagSetter</code> class sets the in memory value from the on disc value in a type safe way for any <code>ITag&lt;T&gt;</code>.</p> <pre><code>/// &lt;summary&gt; /// Allows a tag of any type to be used to get a result of type TResult /// &lt;/summary&gt; /// &lt;typeparam name="TResult"&gt;The result type after using the tag&lt;/typeparam&gt; public interface ITagUser&lt;TResult&gt; { TResult Use&lt;T&gt;(ITag&lt;T&gt; tag); } /// &lt;summary&gt; /// Allows a tag of any type to be used (with no return value) /// &lt;/summary&gt; public interface ITagUser { void Use&lt;T&gt;(ITag&lt;T&gt; tag); } /// &lt;summary&gt; /// Wraps a tag of some unknown type. Allows tag users (either with or without return values) to use the wrapped list. /// &lt;/summary&gt; public interface IExistsTag { TResult Apply&lt;TResult&gt;(ITagUser&lt;TResult&gt; user); void Apply(ITagUser user); } /// &lt;summary&gt; /// Wraps a tag of type T, hiding the type itself. /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;The type of element contained in the tag&lt;/typeparam&gt; class ExistsTag&lt;T&gt; : IExistsTag { ITag&lt;T&gt; tag; public ExistsTag(ITag&lt;T&gt; tag) { this.tag = tag; } #region IExistsTag Members public TResult Apply&lt;TResult&gt;(ITagUser&lt;TResult&gt; user) { return user.Use(tag); } public void Apply(ITagUser user) { user.Use(tag); } #endregion } public interface ITag { string TagName { get; } Type Type { get; } } public interface ITag&lt;T&gt; : ITag { T InMemValue { get; set; } T OnDiscValue { get; set; } } public class Tag&lt;T&gt; : ITag&lt;T&gt; { public Tag(string tagName) { TagName = tagName; } public string TagName { get; private set; } public T InMemValue { get; set; } public T OnDiscValue { get; set; } public Type Type { get { return typeof(T); } } } public class TagSetter : ITagUser { #region ITagUser Members public void Use&lt;T&gt;(ITag&lt;T&gt; tag) { tag.InMemValue = tag.OnDiscValue; } #endregion } public class TagExtractor : ITagUser&lt;ITag&gt; { #region ITagUser&lt;ITag&gt; Members public ITag Use&lt;T&gt;(ITag&lt;T&gt; tag) { return tag; } #endregion } public class MusicTrack { public MusicTrack() { TrackTitle = new Tag&lt;string&gt;("TrackTitle"); TrackNumber = new Tag&lt;int&gt;("TrackNumber"); Tags = new Dictionary&lt;string, IExistsTag&gt;(); Tags.Add(TrackTitle.TagName, new ExistsTag&lt;string&gt;(TrackTitle)); Tags.Add(TrackNumber.TagName, new ExistsTag&lt;int&gt;(TrackNumber)); } public IDictionary&lt;string, IExistsTag&gt; Tags; public ITag&lt;string&gt; TrackTitle { get; set; } public ITag&lt;int&gt; TrackNumber { get; set; } } public static class Main { public static void DoSomething_WorksButNotIdeal() { MusicTrack track1 = new MusicTrack(); MusicTrack track2 = new MusicTrack(); TagSetter setter = new TagSetter(); TagExtractor extractor = new TagExtractor(); // Set some values on the tracks foreach (IExistsTag tag in track1.Tags.Values) { tag.Apply(setter); // do stuff using base interface if necessary ITag itag = tag.Apply(extractor); } } } </code></pre>