Generic interfaces
Here is my code public interface ITranslator<E, R> { E ToEntity<T>(R record); } class Gens : ITranslator<string, int> { #region ITranslator<string,int> Members public string ToEntity<MyOtherClass>(int record) { return record.ToString(); } #endregion } When I compile this, I get an error Type p...