FaustVX
FaustVX
@RikkiGibson but it doesn't works for every modifier, I tried with abstract, but that doesn't work ```C# public partial class C { public abstract void M() { //
@RikkiGibson haha Ok 😄
> Allow `ref` assignment in object initializers? > ```csharp > ref struct R > { > public ref T F; > } > > int i = 0; > var...
@hez2010 Maybe, instead of `of`, `for` would be a better name for the keyword as it's already a keyword. ```csharp public extension Foo for IA : IB, IC { }...
> ```csharp > using System; > > public static class C > { > public static void M() { } > } > > class D > { > public...
Ok, so interfaces are needed to do generic with static classes ?
Calling a method should be in the other way. ``` csharp public void Method(PrimaryColor primary) { // This method expect only RED, GREEN, BLUE and BLACK } Method(PrimaryColor.Black); // Works...
@eyalalonn This can't work Example: ```c# var s = """Hello"@eyalalonn""""; // your proposal will just write: @eyalalonn (but with a language named Hello 😄 ) ```
@jnm2 Ok, I was just using @eyalalonn example
I didn't know the fact that a double-quote at the end of the string doesn't compile. So I thought his proposal will compile but produces something different that raw string...