We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f22c6c3 commit e5c41eeCopy full SHA for e5c41ee
docs/csharp/programming-guide/classes-and-structs/snippets/partial-classes-and-methods/Program.cs
@@ -4,6 +4,7 @@ public partial class Employee
4
{
5
public void DoWork()
6
7
+ Console.WriteLine("Employee is working.");
8
}
9
10
@@ -12,6 +13,7 @@ public partial class Employee
12
13
14
public void GoToLunch()
15
16
+ Console.WriteLine("Employee is at lunch.");
17
18
19
@@ -181,4 +183,4 @@ public partial class PropertyBag
181
183
public partial int MyProperty { get => field; set; }
182
184
185
-// </FieldProperty>
186
+// </FieldProperty>
0 commit comments