Result_T_.Deconstruct(bool,object).md
January 20, 2026 ยท View on GitHub
Atypical.VirtualFileSystem.Core
Atypical.VirtualFileSystem.Core.Result<T>
Result<T>.Deconstruct(bool, object) Method
Deconstructs the result into success flag and value/error.
public void Deconstruct(out bool isSuccess, out object? valueOrError);
Parameters
isSuccess System.Boolean
Whether the operation was successful.
valueOrError System.Object
The value if successful, or the error message if failed.