1
我試圖實現應用程序內購買的Metro應用。我在這裏按照教程。錯誤的應用程序內購買教程在微軟網站
的C#代碼是
function AppInit()
{
// some app initialization functions
// Get the license info
// The next line is commented out for testing.
// licenseInformation = CurrentApp.LicenseInformation;
// The next line is commented out for production/release.
licenseInformation = CurrentAppSimulator.LicenseInformation;
// other app initialization functions
}
但是,也有在C#中沒有function
關鍵字。這是錯誤的?如果是這樣,那麼正確的代碼假設是什麼?