有什麼辦法,如何將這種轉換:C#轉換結構到另一個結構
namespace Library
{
public struct Content
{
int a;
int b;
}
}
我在有數據定義相同的方式 ({ int a; int b; }
)Library2.Content結構,但不同的方法。
有沒有辦法將一個結構實例從Library.Content轉換爲Library2.Content?喜歡的東西:
Library.Content c1 = new Library.Content(10, 11);
Library2.Content c2 = (Libary2.Content)(c1); //this doesn't work
問題是,我沒有內部Library2和分享幫助我不知道Library2 – Perry 2010-09-26 17:19:43
的存在,那麼去@Kent Boogaart的第二個或第三個選項的訪問。 – 2010-09-26 17:21:58