Ruttie
Ruttie
CC#
Created by Ruttie on 3/4/2025 in #help
Changing file name of itemgroup
Thanks for the links, I'll check them out
20 replies
CC#
Created by Ruttie on 1/6/2025 in #help
Inline if conditionals in dotnet new template
I did consider that, but I feel like it'd be hell to actually work with
12 replies
CC#
Created by Ruttie on 1/6/2025 in #help
Inline if conditionals in dotnet new template
thanks :catbless:
12 replies
CC#
Created by Ruttie on 1/6/2025 in #help
Inline if conditionals in dotnet new template
That is an amazing solution, I might go with that
12 replies
CC#
Created by Ruttie on 1/6/2025 in #help
Inline if conditionals in dotnet new template
not to mention the duplicated code
12 replies
CC#
Created by Ruttie on 1/6/2025 in #help
Inline if conditionals in dotnet new template
That is a possibility, but how would the naming of the file work
12 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
thus causing the same issue again
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
which would then basically be equivalent to putting a yield return Method3() in Method1
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
one of the items returned from Method2 can be an IEnumerator
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
yes
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
well, if Method2 yield returns another enumerator, and that enumerator throws, my code won't work anymore
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
wdym? I never said this was wrong, I explicitly said:
I think I managed to solve the problem.
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
specifically:
yield return null;
IEnumerator coro;
try {
coro = Method2();
}
catch (Exception ex) {
obj._tcs.SetException(ex);
yield break;
}

while (true)
{
object current = null;
try
{
if (!coro.MoveNext())
break;

current = coro.Current;
}
catch (Exception ex)
{
obj._tcs.SetException(ex);
yield break;
}

yield return current;
}

obj.Complete();
yield return null;
IEnumerator coro;
try {
coro = Method2();
}
catch (Exception ex) {
obj._tcs.SetException(ex);
yield break;
}

while (true)
{
object current = null;
try
{
if (!coro.MoveNext())
break;

current = coro.Current;
}
catch (Exception ex)
{
obj._tcs.SetException(ex);
yield break;
}

yield return current;
}

obj.Complete();
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
yeah, that is what I'm doing
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
yup
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
note that Method1 also has a yield return null; at the start, so that control is immediately given to unity
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
Method1 is going into a StartCoroutine call
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
wdym?
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
I mean, this is what I tried, and it doesn't work
74 replies
CC#
Created by Ruttie on 10/29/2024 in #help
Try-catch in an iterator
I'm not continuing the Method2 enumerator after an exception
74 replies