You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
documentation/examples/videos - all talking about advantages, but where is simple working examples?
i have tried to use this... unfortunately it doesn't work for me:
DefaultPileBase xPile = null;
if (!useMemoryFilePile) xPile = new DefaultPile();
else
{
var ipile = (xPile = new MMFPile(null)) as MMFPile;
if (!System.IO.Directory.Exists(DataDirectory.Value)) System.IO.Directory.CreateDirectory(DataDirectory.Value);
ipile.DataDirectoryRoot = DataDirectory.Value;
}
then, when i am trying to check list of objects in xPile: xPile.FirstOrDefault(e => e.Valid) <= null reference exception
sorry, just have found what is going wrong, "Configure" & "Start" methods have to be executed.
The text was updated successfully, but these errors were encountered:
documentation/examples/videos - all talking about advantages, but where is simple working examples?
i have tried to use this... unfortunately it doesn't work for me:
then, when i am trying to check list of objects in xPile:
xPile.FirstOrDefault(e => e.Valid)
<= null reference exceptionsorry, just have found what is going wrong, "Configure" & "Start" methods have to be executed.
The text was updated successfully, but these errors were encountered: