2012-10-15 5 views
4

가능한 중복 : 사용하여 리소스 파일을 통해
How to get the comment from a .resx file entryResourceSet에서 리소스 파일 주석을 가져 오는 방법은 무엇입니까?

I 루프 :

_cityResources = Cities.ResourceManager.GetResourceSet(
         CultureInfo.CurrentUICulture, 
         true, 
         true); 

foreach (DictionaryEntry entry in CityResources) 
{ 
    result.Add(new CityBounds() 
    { 
     Name = entry.Key as string, 
     BoundingBox = (entry.Value as string).ToBoundingBox() 
    }); 
} 

내 물건에 대한 키 값 쌍을 사용하여. 그리고 지금 질문이 있습니다 :

이 루프에서 리소스 파일, 주석 열의 내용을 가져 오는 방법은 무엇입니까?

답변

관련 문제