# CallStaticStringMethodUnsafe(IntPtr, IntPtr, jvalue*)

> Invokes the specified \<tt\>methodID\</tt\> static method on a Java object, optionally passing in an array of arguments (\<tt\>args\</tt\>).

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine](/engine/6000.0/script-reference/unityengine.md)
* **Assembly:** UnityEngine.AndroidJNIModule

```csharp
public static string CallStaticStringMethodUnsafe(IntPtr clazz, IntPtr methodID, jvalue* args)
```

### Parameters

**** (\[IntPtr]\(https\://learn.microsoft.com/dotnet/api/system.intptr)): **** (\[IntPtr]\(https\://learn.microsoft.com/dotnet/api/system.intptr)): **** (jvalue\*):&#x20;

### Returns

| Type                                                           | Description |
| -------------------------------------------------------------- | ----------- |
| [string](https://learn.microsoft.com/dotnet/api/system.string) |             |

### Remarks

This is a convenience function that calls CallStaticObjectMethod() with the same parameters, but creates a managed string from the result.

Additional Resources: [AndroidJNI.CallStaticObjectMethodUnsafe](/engine/6000.0/script-reference/unityengine/androidjni/callstaticobjectmethodunsafe.md).
