diff --git a/guide/english/csharp/interface/index.md b/guide/english/csharp/interface/index.md index 87739a1f76..a792a77263 100644 --- a/guide/english/csharp/interface/index.md +++ b/guide/english/csharp/interface/index.md @@ -55,3 +55,21 @@ public class UserHungry : IUserFavoriteFood } } ``` + +Every implementation can be different: +```csharp +public class AnotherUserHungry : IUserFavoriteFood +{ + public AddFood() + { + // DIFFERENT Implementation: + // A method to add vegan food. + } + + public Task EatFavoriteFood(int id) + { + // DIFFERENT Implementation: + // A method to Eat only vegan food by id. + } +} +```