KZ

Results 36 comments of KZ

@jtattermusch yeah you are not familiar with C++/CLI projects. the limitation is that not only the C++/CLI project itself can't target netstandard2.x, but also its dependencies also need to be...

I also don't know why Microsoft not support the pattern "C++/CLI project reference .NET 6 dll which reference .NET Standard 2+ dll". But this is the fact now, can you...

@jtattermusch It seem to be a Windows bug, after the Windows update my project works: https://github.com/dotnet/runtime/issues/68261#event-6472857410 But I think .netstandard is obsolete, and net 5/6(latest .net) target support is necessary....

Since No new versions of .NET Standard and .NET framework will be released. The word should be "old technology" instead of obsolete (sorry for my vocabulary). And Microsoft recommends go...

main.go ```go package main import ( "io/ioutil" "github.com/atotto/clipboard" ) func main() { err := clipboard.WriteAll("你好") if err != nil { panic(err) } text, err := clipboard.ReadAll() if err != nil...

main.go ```go package main import ( "io/ioutil" "github.com/atotto/clipboard" ) func main() { // 你好 text, err := clipboard.ReadAll() if err != nil { panic(err) } ioutil.WriteFile("/path/to/output.txt", []byte(text), 0644) } ```...

it seems that when calling my program using xbar, it lacks "LANG" environment variable: after add `os.Setenv("LANG", "en_US.UTF-8")` or `os.Setenv("LANG", "zh_CN.UTF-8")` to my go code, I get utf8 bytes using...

https://stackoverflow.com/a/41133244/4822506 xbar shoud preserve the existing environment

I think we should keep the same behavior for minimal api and mvc controller (also see https://github.com/dotnet/aspnetcore/issues/49437 ) The inconsistence will make people confuse. For example: in mvc controller: `IFormFileCollection...

[20231129_iced_record.gif.zip](https://github.com/iced-rs/iced/files/13502683/20231129_iced_record.gif.zip) I find the line `drop(ManuallyDrop::into_inner(user_interface));` line in `winit/src/application.rs` was called twice. maybe this is why it get stuck. Can you help?