Here is a meaningless extension method as an example:
public static class MyExtensions { public static int MyExtensionMethod(this MyType e) { in
Yes, that's a correct assessment. x is a method-local variable, and won't be shared between invocations of MyExtensionMethod.
x
MyExtensionMethod