컨트롤러 asp.net -core에서 최신 문화 가져오기 내 보기에 맞게 문화를 설정하고 컨트롤러에서 문화를 변경했는데 컨트롤러에서 현재 어떤 문화를 사용하고 있는지 알 수 없는 것 같습니다. 다음과 같은 것을 찾고 있습니다. public class HomeController : Controller { public async Task Index() { // Something like the next line var requestCulture = GetRequestedCulture() return View(); } } 정답은 Request Object에 있었습니다. 코드는 다음과 같습니다. public async Task Index() { // Retrieves the requested culture va..