From efff592bc66ad30c2430edd9d871fc4a05ffb50f Mon Sep 17 00:00:00 2001 From: Willy David Jr Date: Sun, 27 Jan 2019 09:30:51 +0800 Subject: [PATCH] Corrected syntax for interface. (#32878) Corrected syntax of interface. From Interface to interface (lowercase on first letter). If the first letter on the word interface is uppercase, this will produce an error on Visual Studio stating that: The type or namespace name 'Interface' could not be found (are you missing a using directive or an assembly reference?) --- guide/english/csharp/interface/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/csharp/interface/index.md b/guide/english/csharp/interface/index.md index 76da929621..be77488455 100644 --- a/guide/english/csharp/interface/index.md +++ b/guide/english/csharp/interface/index.md @@ -32,7 +32,7 @@ As interfaces do not implement any logic by themselves, they are a great tool fo Interface Example: ```csharp -public Interface IUserFavoriteFood +public interface IUserFavoriteFood { void AddFood(); Task EatFavoriteFood(int id);