Skip to main content

All Questions

16 votes
6 answers
8k views

What is the functional-programming alternative to an interface?

If I want to program in a "functional" style, with what would I replace an interface? interface IFace { string Name { get; set; } int Id { get; } } class Foo : IFace { ... } Maybe a Tuple<&...
Ðаn's user avatar
  • 584