Skip to content

Commit ec2b81b

Browse files
authored
Fixes #4985 by fixing the misspelling in a code sample (#4986)
1 parent fbe4611 commit ec2b81b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/snippets/csharp/VS_Snippets_CLR_System/system.Reflection.Assembly/CS/getcallingassembly1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class InSecondAssembly
3333
[MethodImpl(MethodImplOptions.NoInlining)]
3434
public static void OtherMethod()
3535
{
36-
Console.WriteLine("OtherMehod executing assembly: " + Assembly.GetExecutingAssembly().FullName);
36+
Console.WriteLine("OtherMethod executing assembly: " + Assembly.GetExecutingAssembly().FullName);
3737
Console.WriteLine("OtherMethod called from: " + Assembly.GetCallingAssembly().FullName);
3838
}
3939
}

0 commit comments

Comments
 (0)