当它的属性发生变化时收集值,该方法需要一些时间来获取他的字符串。我必须等到字符串从 NULL 更改为某个值,在它更改后我必须收集它并返回。这是两个不同的线程..
public static string k=string.Empty;
public void SomeMethod()
{
k=someObject.Method(byte[]);// this returns some string this methods takes some time to execute
CollectMethod(k);
}
Public string CollectMethod(string K);
{
return k;// Return only when the k is not null
}