Hi Everyone,
I have created a dictionary like
for each row of a table
Config(row(“key”).tostring)=row(“Value”)
Now i have created an array of the values using key as below:
Array={Config(“abc”).ToString, Config(“efg”).ToString, Config(“hij”).ToString, Config(“klm”).ToString}
now i have applied a loop to find the missing value
for each item in array
if
String.IsNullOrEmpty((item.ToString))
WriteLine = item+“is missing”
Here I am not getting anything in item as the value of item is empty, i want the key name of item to print here.
any idea how to get this done.
Any help is appreciated.