C# Dictionary
C# Dictionary kullanımına bir örnek; private static readonly Dictionary< string , string > _changedResources = new Dictionary< string , string> ; { { "400002" , "Olay" }, { "400003" , "Problem" }, { "400004" , "Talep" }, { "400005" , "Proje Geçişi" }, { "400006" , "Diğer" }, { "400007" , "Küçük İstek" }, { "400008" , "Proje Sonrası Düzeltme" }, { "400009" , "İyileştirme" }, { "400010" , "Proje Sonrası Düzeltme" }, { "400012" , "Projeye Bağlı Diğer Değişiklik" } }; internal static string GetChangeResourceType( int changeOrderId) { ChngTbl c = new ChngTbl (); Que...